parallel¶
| Properties | |
|---|---|
| Spec name | parallel |
| Implementation name | parallel |
| Spec version | 194 |
| SS58 Format | 172 |
| Token symbol | PARA |
| Token decimals | 12 |
AMM¶
Calls¶
add_liquidity¶
Allow users to add liquidity to a given pool
pool: Currency pool, in which liquidity will be addedliquidity_amounts: Liquidity amounts to be added in poolminimum_amounts: specifying its "worst case" ratio when pool already exists
Attributes¶
| Name | Type |
|---|---|
| pair | (AssetIdOf<T, I>, AssetIdOf<T, I>) |
| desired_amounts | (BalanceOf<T, I>, BalanceOf<T, I>) |
| minimum_amounts | (BalanceOf<T, I>, BalanceOf<T, I>) |
Python¶
call = substrate.compose_call(
'AMM', 'add_liquidity', {
'desired_amounts': (
'u128',
'u128',
),
'minimum_amounts': (
'u128',
'u128',
),
'pair': ('u32', 'u32'),
}
)
create_pool¶
Create of a new pool, governance only
pool: Currency pool, in which liquidity will be addedliquidity_amounts: Liquidity amounts to be added in poollptoken_receiver: Allocate any liquidity tokens to lptoken_receiverlp_token_id: Liquidity pool share representative token
Attributes¶
| Name | Type |
|---|---|
| pair | (AssetIdOf<T, I>, AssetIdOf<T, I>) |
| liquidity_amounts | (BalanceOf<T, I>, BalanceOf<T, I>) |
| lptoken_receiver | T::AccountId |
| lp_token_id | AssetIdOf<T, I> |
Python¶
call = substrate.compose_call(
'AMM', 'create_pool', {
'liquidity_amounts': (
'u128',
'u128',
),
'lp_token_id': 'u32',
'lptoken_receiver': 'AccountId',
'pair': ('u32', 'u32'),
}
)
remove_liquidity¶
Allow users to remove liquidity from a given pool
pair: Currency pool, in which liquidity will be removedliquidity: liquidity to be removed from user's liquidity
Attributes¶
| Name | Type |
|---|---|
| pair | (AssetIdOf<T, I>, AssetIdOf<T, I>) |
| liquidity | BalanceOf<T, I> |
Python¶
call = substrate.compose_call(
'AMM', 'remove_liquidity', {
'liquidity': 'u128',
'pair': ('u32', 'u32'),
}
)
update_protocol_fee¶
Attributes¶
| Name | Type |
|---|---|
| protocol_fee | Ratio |
Python¶
call = substrate.compose_call(
'AMM', 'update_protocol_fee', {'protocol_fee': 'u32'}
)
update_protocol_fee_receiver¶
Attributes¶
| Name | Type |
|---|---|
| protocol_fee_receiver | T::AccountId |
Python¶
call = substrate.compose_call(
'AMM', 'update_protocol_fee_receiver', {'protocol_fee_receiver': 'AccountId'}
)
Events¶
LiquidityAdded¶
Add liquidity into pool [sender, base_currency_id, quote_currency_id, base_amount_added, quote_amount_added, lp_token_id, new_base_amount, new_quote_amount]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | AssetIdOf<T, I> |
u32 |
| None | AssetIdOf<T, I> |
u32 |
| None | BalanceOf<T, I> |
u128 |
| None | BalanceOf<T, I> |
u128 |
| None | AssetIdOf<T, I> |
u32 |
| None | BalanceOf<T, I> |
u128 |
| None | BalanceOf<T, I> |
u128 |
LiquidityRemoved¶
Remove liquidity from pool [sender, base_currency_id, quote_currency_id, liquidity, base_amount_removed, quote_amount_removed, lp_token_id, new_base_amount, new_quote_amount]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | AssetIdOf<T, I> |
u32 |
| None | AssetIdOf<T, I> |
u32 |
| None | BalanceOf<T, I> |
u128 |
| None | BalanceOf<T, I> |
u128 |
| None | BalanceOf<T, I> |
u128 |
| None | AssetIdOf<T, I> |
u32 |
| None | BalanceOf<T, I> |
u128 |
| None | BalanceOf<T, I> |
u128 |
PoolCreated¶
A Pool has been created [trader, currency_id_in, currency_id_out, lp_token_id]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | AssetIdOf<T, I> |
u32 |
| None | AssetIdOf<T, I> |
u32 |
| None | AssetIdOf<T, I> |
u32 |
ProtocolFeeReceiverUpdated¶
Protocol fee receiver updated
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
ProtocolFeeUpdated¶
Protocol fee proportion of LP fee updated.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | Ratio |
u32 |
Traded¶
Trade using liquidity [trader, currency_id_in, currency_id_out, amount_in, amount_out, lp_token_id, new_quote_amount, new_base_amount]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | AssetIdOf<T, I> |
u32 |
| None | AssetIdOf<T, I> |
u32 |
| None | BalanceOf<T, I> |
u128 |
| None | BalanceOf<T, I> |
u128 |
| None | AssetIdOf<T, I> |
u32 |
| None | BalanceOf<T, I> |
u128 |
| None | BalanceOf<T, I> |
u128 |
Storage functions¶
Pools¶
A bag of liquidity composed by two different assets
Python¶
result = substrate.query(
'AMM', 'Pools', ['u32', 'u32']
)
Return value¶
{
'base_amount': 'u128',
'base_amount_last': 'u128',
'block_timestamp_last': 'u32',
'lp_token_id': 'u32',
'price_0_cumulative_last': 'u128',
'price_1_cumulative_last': 'u128',
'quote_amount': 'u128',
'quote_amount_last': 'u128',
}
ProtocolFee¶
How much the protocol is taking out of each trade.
Python¶
result = substrate.query(
'AMM', 'ProtocolFee', []
)
Return value¶
'u32'
ProtocolFeeReceiver¶
Who/where to send the protocol fees
Python¶
result = substrate.query(
'AMM', 'ProtocolFeeReceiver', []
)
Return value¶
'AccountId'
Constants¶
GetNativeCurrencyId¶
Value¶
1
Python¶
constant = substrate.get_constant('AMM', 'GetNativeCurrencyId')
LockAccountId¶
Value¶
'p8AxskWHQBViXqKEeX2nUCLmxNrzQrDLd75fcJzDbGTTVUbBz'
Python¶
constant = substrate.get_constant('AMM', 'LockAccountId')
LpFee¶
Defines the fees taken out of each trade and sent back to the AMM pool, typically 0.3%.
Value¶
3000
Python¶
constant = substrate.get_constant('AMM', 'LpFee')
MaxLengthRoute¶
How many routes we support at most
Value¶
10
Python¶
constant = substrate.get_constant('AMM', 'MaxLengthRoute')
MinimumLiquidity¶
Minimum amount of liquidty needed to init a new pool this amount is burned when the pool is created.
It's important that we include this value in order to
prevent attacks where a bad actor will create and
remove pools with malious intentions. By requiring
a MinimumLiquidity, a pool cannot be removed since
a small amount of tokens are locked forever when liquidity
is first added.
Value¶
1000
Python¶
constant = substrate.get_constant('AMM', 'MinimumLiquidity')
PalletId¶
Value¶
'0x7061722f616d6d70'
Python¶
constant = substrate.get_constant('AMM', 'PalletId')
Errors¶
ConversionToU128Failed¶
Conversion failure to u128
IdenticalAssets¶
Identical assets
InsufficientAmountIn¶
Insufficient amount in
InsufficientAmountOut¶
Insufficient amount out
InsufficientLiquidity¶
Insufficient liquidity
InsufficientSupplyOut¶
Insufficient supply out.
LpTokenAlreadyExists¶
LP token has already been minted
NotAnIdealPrice¶
Not an ideal price ratio
PoolAlreadyExists¶
Pool does not exist
PoolDoesNotExist¶
Pool does not exist
ProtocolFeeReceiverNotSet¶
Protocol fee receiver not set
AMMRoute¶
Calls¶
swap_exact_tokens_for_tokens¶
Given input amount is fixed, the output token amount is not known in advance.
origin: the trader.route: the route user inputsamount_in: the amount of trading assetsmin_amount_out: the minimum a trader is willing to receive
Attributes¶
| Name | Type |
|---|---|
| route | Vec<AssetIdOf<T, I>> |
| amount_in | BalanceOf<T, I> |
| min_amount_out | BalanceOf<T, I> |
Python¶
call = substrate.compose_call(
'AMMRoute', 'swap_exact_tokens_for_tokens', {
'amount_in': 'u128',
'min_amount_out': 'u128',
'route': ['u32'],
}
)
swap_tokens_for_exact_tokens¶
Given the output token amount is fixed, the input token amount is not known.
origin: the trader.route: the route user inputsamount_out: the amount of trading assetsmax_amount_in: the maximum a trader is willing to input
Attributes¶
| Name | Type |
|---|---|
| route | Vec<AssetIdOf<T, I>> |
| amount_out | BalanceOf<T, I> |
| max_amount_in | BalanceOf<T, I> |
Python¶
call = substrate.compose_call(
'AMMRoute', 'swap_tokens_for_exact_tokens', {
'amount_out': 'u128',
'max_amount_in': 'u128',
'route': ['u32'],
}
)
Events¶
Traded¶
Event emitted when swap is successful [sender, amount_in, route, amount_out]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | BalanceOf<T, I> |
u128 |
| None | Vec<AssetIdOf<T, I>> |
['u32'] |
| None | BalanceOf<T, I> |
u128 |
Constants¶
GetNativeCurrencyId¶
The asset id for native currency.
Value¶
1
Python¶
constant = substrate.get_constant('AMMRoute', 'GetNativeCurrencyId')
MaxLengthRoute¶
How many routes we support at most
Value¶
10
Python¶
constant = substrate.get_constant('AMMRoute', 'MaxLengthRoute')
PalletId¶
Router pallet id
Value¶
'0x616d6d726f757465'
Python¶
constant = substrate.get_constant('AMMRoute', 'PalletId')
Errors¶
DuplicatedRoute¶
Input duplicated route
EmptyRoute¶
Must input one route at least
ExceedMaxLengthRoute¶
Exceed the max length of routes we allow
InsufficientBalance¶
User hasn't enough tokens for transaction
MaximumAmountInViolated¶
A more specific UnexpectedSlippage when trading exact amount out
MinimumAmountOutViolated¶
A more specific UnexpectedSlippage when trading exact amount in
NoPossibleRoute¶
Route between tokens is not possible
TokenDoesNotExists¶
Token doesn't exists in all pools
ZeroBalance¶
Input balance must not be zero
AssetRegistry¶
Calls¶
deregister_asset¶
Remove a given assetId -> assetType association
Attributes¶
| Name | Type |
|---|---|
| asset_id | T::AssetId |
Python¶
call = substrate.compose_call(
'AssetRegistry', 'deregister_asset', {'asset_id': 'u32'}
)
register_asset¶
Register new asset with the asset registry
Attributes¶
| Name | Type |
|---|---|
| asset_id | T::AssetId |
| asset_type | T::AssetType |
Python¶
call = substrate.compose_call(
'AssetRegistry', 'register_asset', {
'asset_id': 'u32',
'asset_type': {
'Xcm': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
},
'parents': 'u8',
},
},
}
)
remove_fee_payment_asset¶
Attributes¶
| Name | Type |
|---|---|
| asset_type | T::AssetType |
Python¶
call = substrate.compose_call(
'AssetRegistry', 'remove_fee_payment_asset', {
'asset_type': {
'Xcm': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
},
'parents': 'u8',
},
},
}
)
update_asset_type¶
Change the xcm type mapping for a given assetId We also change this if the previous units per second where pointing at the old assetType
Attributes¶
| Name | Type |
|---|---|
| asset_id | T::AssetId |
| new_asset_type | T::AssetType |
Python¶
call = substrate.compose_call(
'AssetRegistry', 'update_asset_type', {
'asset_id': 'u32',
'new_asset_type': {
'Xcm': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
},
'parents': 'u8',
},
},
}
)
update_asset_units_per_second¶
Change the amount of units we are charging per execution second for a given AssetType
Attributes¶
| Name | Type |
|---|---|
| asset_type | T::AssetType |
| units_per_second | u128 |
Python¶
call = substrate.compose_call(
'AssetRegistry', 'update_asset_units_per_second', {
'asset_type': {
'Xcm': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
},
'parents': 'u8',
},
},
'units_per_second': 'u128',
}
)
Events¶
AssetDeregisteredd¶
Removed all information related to an assetId
Attributes¶
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u32 |
| asset_type | T::AssetType |
{'Xcm': {'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, 'X2': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X3': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X4': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X5': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X6': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X7': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X8': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'})}}} |
AssetRegistered¶
New asset with the asset manager is registered
Attributes¶
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u32 |
| asset_type | T::AssetType |
{'Xcm': {'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, 'X2': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X3': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X4': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X5': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X6': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X7': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X8': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'})}}} |
AssetTypeUpdated¶
Changed the xcm type mapping for a given asset id
Attributes¶
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u32 |
| new_asset_type | T::AssetType |
{'Xcm': {'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, 'X2': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X3': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X4': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X5': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X6': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X7': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X8': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'})}}} |
FeePaymentAssetRemoved¶
Supported asset type for fee payment removed
Attributes¶
| Name | Type | Composition |
|---|---|---|
| asset_type | T::AssetType |
{'Xcm': {'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, 'X2': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X3': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X4': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X5': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X6': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X7': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X8': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'})}}} |
UnitsPerSecondUpdated¶
Changed the amount of units we are charging per execution second for a given asset
Attributes¶
| Name | Type | Composition |
|---|---|---|
| asset_type | T::AssetType |
{'Xcm': {'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, 'X2': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X3': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X4': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X5': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X6': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X7': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X8': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'})}}} |
| units_per_second | u128 |
u128 |
Storage functions¶
AssetIdType¶
Mapping from an asset id to asset type. This is mostly used when receiving transaction specifying an asset directly, like transferring an asset from this chain to another.
Python¶
result = substrate.query(
'AssetRegistry', 'AssetIdType', ['u32']
)
Return value¶
{
'Xcm': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {'id': '[u8; 32]', 'network': 'scale_info::65'},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
},
'parents': 'u8',
},
}
AssetTypeId¶
Reverse mapping of AssetIdType. Mapping from an asset type to an asset id. This is mostly used when receiving a multilocation XCM message to retrieve the corresponding asset in which tokens should me minted.
Python¶
result = substrate.query(
'AssetRegistry', 'AssetTypeId', [
{
'Xcm': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
},
'parents': 'u8',
},
},
]
)
Return value¶
'u32'
AssetTypeUnitsPerSecond¶
Stores the units per second for local execution for a AssetType. This is used to know how to charge for XCM execution in a particular asset Not all assets might contain units per second, hence the different storage
Python¶
result = substrate.query(
'AssetRegistry', 'AssetTypeUnitsPerSecond', [
{
'Xcm': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
},
'parents': 'u8',
},
},
]
)
Return value¶
'u128'
SupportedFeePaymentAssets¶
Python¶
result = substrate.query(
'AssetRegistry', 'SupportedFeePaymentAssets', []
)
Return value¶
[
{
'Xcm': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': ('scale_info::63', 'scale_info::63'),
'X3': ('scale_info::63', 'scale_info::63', 'scale_info::63'),
'X4': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X5': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X6': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X7': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X8': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
},
'parents': 'u8',
},
},
]
Errors¶
AssetAlreadyExists¶
AssetDoesNotExist¶
Assets¶
Calls¶
approve_transfer¶
Approve an amount of asset for transfer by a delegated third-party account.
Origin must be Signed.
Ensures that ApprovalDeposit worth of Currency is reserved from signing account
for the purpose of holding the approval. If some non-zero amount of assets is already
approved from signing account to delegate, then it is topped up or unreserved to
meet the right value.
NOTE: The signing account does not need to own amount of assets at the point of
making this call.
id: The identifier of the asset.delegate: The account to delegate permission to transfer asset.amount: The amount of asset that may be transferred bydelegate. If there is already an approval in place, then this acts additively.
Emits ApprovedTransfer on success.
Weight: O(1)
Attributes¶
| Name | Type |
|---|---|
| id | T::AssetId |
| delegate | AccountIdLookupOf<T> |
| amount | T::Balance |
Python¶
call = substrate.compose_call(
'Assets', 'approve_transfer', {
'amount': 'u128',
'delegate': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'id': 'u32',
}
)
burn¶
Reduce the balance of who by as much as possible up to amount assets of id.
Origin must be Signed and the sender should be the Manager of the asset id.
Bails with NoAccount if the who is already dead.
id: The identifier of the asset to have some amount burned.who: The account to be debited from.amount: The maximum amount by whichwho's balance should be reduced.
Emits Burned with the actual amount burned. If this takes the balance to below the
minimum for the asset, then the amount burned is increased to take it to zero.
Weight: O(1)
Modes: Post-existence of who; Pre & post Zombie-status of who.
Attributes¶
| Name | Type |
|---|---|
| id | T::AssetId |
| who | AccountIdLookupOf<T> |
| amount | T::Balance |
Python¶
call = substrate.compose_call(
'Assets', 'burn', {
'amount': 'u128',
'id': 'u32',
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
cancel_approval¶
Cancel all of some asset approved for delegated transfer by a third-party account.
Origin must be Signed and there must be an approval in place between signer and
delegate.
Unreserves any deposit previously reserved by approve_transfer for the approval.
id: The identifier of the asset.delegate: The account delegated permission to transfer asset.
Emits ApprovalCancelled on success.
Weight: O(1)
Attributes¶
| Name | Type |
|---|---|
| id | T::AssetId |
| delegate | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Assets', 'cancel_approval', {
'delegate': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'id': 'u32',
}
)
clear_metadata¶
Clear the metadata for an asset.
Origin must be Signed and the sender should be the Owner of the asset id.
Any deposit is freed for the asset owner.
id: The identifier of the asset to clear.
Emits MetadataCleared.
Weight: O(1)
Attributes¶
| Name | Type |
|---|---|
| id | T::AssetId |
Python¶
call = substrate.compose_call(
'Assets', 'clear_metadata', {'id': 'u32'}
)
create¶
Issue a new class of fungible assets from a public origin.
This new asset class has no assets initially and its owner is the origin.
The origin must be Signed and the sender must have sufficient funds free.
Funds of sender are reserved by AssetDeposit.
Parameters:
- id: The identifier of the new asset. This must not be currently in use to identify
an existing asset.
- admin: The admin of this class of assets. The admin is the initial address of each
member of the asset class's admin team.
- min_balance: The minimum balance of this new asset that any single account must
have. If an account's balance is reduced below this, then it collapses to zero.
Emits Created event when successful.
Weight: O(1)
Attributes¶
| Name | Type |
|---|---|
| id | T::AssetId |
| admin | AccountIdLookupOf<T> |
| min_balance | T::Balance |
Python¶
call = substrate.compose_call(
'Assets', 'create', {
'admin': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'id': 'u32',
'min_balance': 'u128',
}
)
destroy¶
Destroy a class of fungible assets.
The origin must conform to ForceOrigin or must be Signed and the sender must be the
owner of the asset id.
id: The identifier of the asset to be destroyed. This must identify an existing asset.
Emits Destroyed event when successful.
NOTE: It can be helpful to first freeze an asset before destroying it so that you can provide accurate witness information and prevent users from manipulating state in a way that can make it harder to destroy.
Weight: O(c + p + a) where:
- c = (witness.accounts - witness.sufficients)
- s = witness.sufficients
- a = witness.approvals
Attributes¶
| Name | Type |
|---|---|
| id | T::AssetId |
| witness | DestroyWitness |
Python¶
call = substrate.compose_call(
'Assets', 'destroy', {
'id': 'u32',
'witness': {
'accounts': 'u32',
'approvals': 'u32',
'sufficients': 'u32',
},
}
)
force_asset_status¶
Alter the attributes of a given asset.
Origin must be ForceOrigin.
id: The identifier of the asset.owner: The new Owner of this asset.issuer: The new Issuer of this asset.admin: The new Admin of this asset.freezer: The new Freezer of this asset.min_balance: The minimum balance of this new asset that any single account must have. If an account's balance is reduced below this, then it collapses to zero.is_sufficient: Whether a non-zero balance of this asset is deposit of sufficient value to account for the state bloat associated with its balance storage. If set totrue, then non-zero balances may be stored without aconsumerreference (and thus an ED in the Balances pallet or whatever else is used to control user-account state growth).is_frozen: Whether this asset class is frozen except for permissioned/admin instructions.
Emits AssetStatusChanged with the identity of the asset.
Weight: O(1)
Attributes¶
| Name | Type |
|---|---|
| id | T::AssetId |
| owner | AccountIdLookupOf<T> |
| issuer | AccountIdLookupOf<T> |
| admin | AccountIdLookupOf<T> |
| freezer | AccountIdLookupOf<T> |
| min_balance | T::Balance |
| is_sufficient | bool |
| is_frozen | bool |
Python¶
call = substrate.compose_call(
'Assets', 'force_asset_status', {
'admin': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'freezer': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'id': 'u32',
'is_frozen': 'bool',
'is_sufficient': 'bool',
'issuer': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'min_balance': 'u128',
'owner': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
force_cancel_approval¶
Cancel all of some asset approved for delegated transfer by a third-party account.
Origin must be either ForceOrigin or Signed origin with the signer being the Admin
account of the asset id.
Unreserves any deposit previously reserved by approve_transfer for the approval.
id: The identifier of the asset.delegate: The account delegated permission to transfer asset.
Emits ApprovalCancelled on success.
Weight: O(1)
Attributes¶
| Name | Type |
|---|---|
| id | T::AssetId |
| owner | AccountIdLookupOf<T> |
| delegate | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Assets', 'force_cancel_approval', {
'delegate': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'id': 'u32',
'owner': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
force_clear_metadata¶
Clear the metadata for an asset.
Origin must be ForceOrigin.
Any deposit is returned.
id: The identifier of the asset to clear.
Emits MetadataCleared.
Weight: O(1)
Attributes¶
| Name | Type |
|---|---|
| id | T::AssetId |
Python¶
call = substrate.compose_call(
'Assets', 'force_clear_metadata', {'id': 'u32'}
)
force_create¶
Issue a new class of fungible assets from a privileged origin.
This new asset class has no assets initially.
The origin must conform to ForceOrigin.
Unlike create, no funds are reserved.
id: The identifier of the new asset. This must not be currently in use to identify an existing asset.owner: The owner of this class of assets. The owner has full superuser permissions over this asset, but may later change and configure the permissions usingtransfer_ownershipandset_team.min_balance: The minimum balance of this new asset that any single account must have. If an account's balance is reduced below this, then it collapses to zero.
Emits ForceCreated event when successful.
Weight: O(1)
Attributes¶
| Name | Type |
|---|---|
| id | T::AssetId |
| owner | AccountIdLookupOf<T> |
| is_sufficient | bool |
| min_balance | T::Balance |
Python¶
call = substrate.compose_call(
'Assets', 'force_create', {
'id': 'u32',
'is_sufficient': 'bool',
'min_balance': 'u128',
'owner': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
force_set_metadata¶
Force the metadata for an asset to some value.
Origin must be ForceOrigin.
Any deposit is left alone.
id: The identifier of the asset to update.name: The user friendly name of this asset. Limited in length byStringLimit.symbol: The exchange symbol for this asset. Limited in length byStringLimit.decimals: The number of decimals this asset uses to represent one unit.
Emits MetadataSet.
Weight: O(N + S) where N and S are the length of the name and symbol respectively.
Attributes¶
| Name | Type |
|---|---|
| id | T::AssetId |
| name | Vec<u8> |
| symbol | Vec<u8> |
| decimals | u8 |
| is_frozen | bool |
Python¶
call = substrate.compose_call(
'Assets', 'force_set_metadata', {
'decimals': 'u8',
'id': 'u32',
'is_frozen': 'bool',
'name': 'Bytes',
'symbol': 'Bytes',
}
)
force_transfer¶
Move some assets from one account to another.
Origin must be Signed and the sender should be the Admin of the asset id.
id: The identifier of the asset to have some amount transferred.source: The account to be debited.dest: The account to be credited.amount: The amount by which thesource's balance of assets should be reduced anddest's balance increased. The amount actually transferred may be slightly greater in the case that the transfer would otherwise take thesourcebalance above zero but below the minimum balance. Must be greater than zero.
Emits Transferred with the actual amount transferred. If this takes the source balance
to below the minimum for the asset, then the amount transferred is increased to take it
to zero.
Weight: O(1)
Modes: Pre-existence of dest; Post-existence of source; Account pre-existence of
dest.
Attributes¶
| Name | Type |
|---|---|
| id | T::AssetId |
| source | AccountIdLookupOf<T> |
| dest | AccountIdLookupOf<T> |
| amount | T::Balance |
Python¶
call = substrate.compose_call(
'Assets', 'force_transfer', {
'amount': 'u128',
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'id': 'u32',
'source': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
freeze¶
Disallow further unprivileged transfers from an account.
Origin must be Signed and the sender should be the Freezer of the asset id.
id: The identifier of the asset to be frozen.who: The account to be frozen.
Emits Frozen.
Weight: O(1)
Attributes¶
| Name | Type |
|---|---|
| id | T::AssetId |
| who | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Assets', 'freeze', {
'id': 'u32',
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
freeze_asset¶
Disallow further unprivileged transfers for the asset class.
Origin must be Signed and the sender should be the Freezer of the asset id.
id: The identifier of the asset to be frozen.
Emits Frozen.
Weight: O(1)
Attributes¶
| Name | Type |
|---|---|
| id | T::AssetId |
Python¶
call = substrate.compose_call(
'Assets', 'freeze_asset', {'id': 'u32'}
)
mint¶
Mint assets of a particular class.
The origin must be Signed and the sender must be the Issuer of the asset id.
id: The identifier of the asset to have some amount minted.beneficiary: The account to be credited with the minted assets.amount: The amount of the asset to be minted.
Emits Issued event when successful.
Weight: O(1)
Modes: Pre-existing balance of beneficiary; Account pre-existence of beneficiary.
Attributes¶
| Name | Type |
|---|---|
| id | T::AssetId |
| beneficiary | AccountIdLookupOf<T> |
| amount | T::Balance |
Python¶
call = substrate.compose_call(
'Assets', 'mint', {
'amount': 'u128',
'beneficiary': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'id': 'u32',
}
)
refund¶
Return the deposit (if any) of an asset account.
The origin must be Signed.
id: The identifier of the asset for the account to be created.allow_burn: Iftruethen assets may be destroyed in order to complete the refund.
Emits Refunded event when successful.
Attributes¶
| Name | Type |
|---|---|
| id | T::AssetId |
| allow_burn | bool |
Python¶
call = substrate.compose_call(
'Assets', 'refund', {'allow_burn': 'bool', 'id': 'u32'}
)
set_metadata¶
Set the metadata for an asset.
Origin must be Signed and the sender should be the Owner of the asset id.
Funds of sender are reserved according to the formula:
MetadataDepositBase + MetadataDepositPerByte * (name.len + symbol.len) taking into
account any already reserved funds.
id: The identifier of the asset to update.name: The user friendly name of this asset. Limited in length byStringLimit.symbol: The exchange symbol for this asset. Limited in length byStringLimit.decimals: The number of decimals this asset uses to represent one unit.
Emits MetadataSet.
Weight: O(1)
Attributes¶
| Name | Type |
|---|---|
| id | T::AssetId |
| name | Vec<u8> |
| symbol | Vec<u8> |
| decimals | u8 |
Python¶
call = substrate.compose_call(
'Assets', 'set_metadata', {
'decimals': 'u8',
'id': 'u32',
'name': 'Bytes',
'symbol': 'Bytes',
}
)
set_team¶
Change the Issuer, Admin and Freezer of an asset.
Origin must be Signed and the sender should be the Owner of the asset id.
id: The identifier of the asset to be frozen.issuer: The new Issuer of this asset.admin: The new Admin of this asset.freezer: The new Freezer of this asset.
Emits TeamChanged.
Weight: O(1)
Attributes¶
| Name | Type |
|---|---|
| id | T::AssetId |
| issuer | AccountIdLookupOf<T> |
| admin | AccountIdLookupOf<T> |
| freezer | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Assets', 'set_team', {
'admin': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'freezer': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'id': 'u32',
'issuer': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
thaw¶
Allow unprivileged transfers from an account again.
Origin must be Signed and the sender should be the Admin of the asset id.
id: The identifier of the asset to be frozen.who: The account to be unfrozen.
Emits Thawed.
Weight: O(1)
Attributes¶
| Name | Type |
|---|---|
| id | T::AssetId |
| who | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Assets', 'thaw', {
'id': 'u32',
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
thaw_asset¶
Allow unprivileged transfers for the asset again.
Origin must be Signed and the sender should be the Admin of the asset id.
id: The identifier of the asset to be thawed.
Emits Thawed.
Weight: O(1)
Attributes¶
| Name | Type |
|---|---|
| id | T::AssetId |
Python¶
call = substrate.compose_call(
'Assets', 'thaw_asset', {'id': 'u32'}
)
touch¶
Create an asset account for non-provider assets.
A deposit will be taken from the signer account.
origin: Must be Signed; the signer account must have sufficient funds for a deposit to be taken.id: The identifier of the asset for the account to be created.
Emits Touched event when successful.
Attributes¶
| Name | Type |
|---|---|
| id | T::AssetId |
Python¶
call = substrate.compose_call(
'Assets', 'touch', {'id': 'u32'}
)
transfer¶
Move some assets from the sender account to another.
Origin must be Signed.
id: The identifier of the asset to have some amount transferred.target: The account to be credited.amount: The amount by which the sender's balance of assets should be reduced andtarget's balance increased. The amount actually transferred may be slightly greater in the case that the transfer would otherwise take the sender balance above zero but below the minimum balance. Must be greater than zero.
Emits Transferred with the actual amount transferred. If this takes the source balance
to below the minimum for the asset, then the amount transferred is increased to take it
to zero.
Weight: O(1)
Modes: Pre-existence of target; Post-existence of sender; Account pre-existence of
target.
Attributes¶
| Name | Type |
|---|---|
| id | T::AssetId |
| target | AccountIdLookupOf<T> |
| amount | T::Balance |
Python¶
call = substrate.compose_call(
'Assets', 'transfer', {
'amount': 'u128',
'id': 'u32',
'target': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
transfer_approved¶
Transfer some asset balance from a previously delegated account to some third-party account.
Origin must be Signed and there must be an approval in place by the owner to the
signer.
If the entire amount approved for transfer is transferred, then any deposit previously
reserved by approve_transfer is unreserved.
id: The identifier of the asset.owner: The account which previously approved for a transfer of at leastamountand from which the asset balance will be withdrawn.destination: The account to which the asset balance ofamountwill be transferred.amount: The amount of assets to transfer.
Emits TransferredApproved on success.
Weight: O(1)
Attributes¶
| Name | Type |
|---|---|
| id | T::AssetId |
| owner | AccountIdLookupOf<T> |
| destination | AccountIdLookupOf<T> |
| amount | T::Balance |
Python¶
call = substrate.compose_call(
'Assets', 'transfer_approved', {
'amount': 'u128',
'destination': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'id': 'u32',
'owner': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
transfer_keep_alive¶
Move some assets from the sender account to another, keeping the sender account alive.
Origin must be Signed.
id: The identifier of the asset to have some amount transferred.target: The account to be credited.amount: The amount by which the sender's balance of assets should be reduced andtarget's balance increased. The amount actually transferred may be slightly greater in the case that the transfer would otherwise take the sender balance above zero but below the minimum balance. Must be greater than zero.
Emits Transferred with the actual amount transferred. If this takes the source balance
to below the minimum for the asset, then the amount transferred is increased to take it
to zero.
Weight: O(1)
Modes: Pre-existence of target; Post-existence of sender; Account pre-existence of
target.
Attributes¶
| Name | Type |
|---|---|
| id | T::AssetId |
| target | AccountIdLookupOf<T> |
| amount | T::Balance |
Python¶
call = substrate.compose_call(
'Assets', 'transfer_keep_alive', {
'amount': 'u128',
'id': 'u32',
'target': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
transfer_ownership¶
Change the Owner of an asset.
Origin must be Signed and the sender should be the Owner of the asset id.
id: The identifier of the asset.owner: The new Owner of this asset.
Emits OwnerChanged.
Weight: O(1)
Attributes¶
| Name | Type |
|---|---|
| id | T::AssetId |
| owner | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Assets', 'transfer_ownership', {
'id': 'u32',
'owner': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
Events¶
ApprovalCancelled¶
An approval for account delegate was cancelled by owner.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u32 |
| owner | T::AccountId |
AccountId |
| delegate | T::AccountId |
AccountId |
ApprovedTransfer¶
(Additional) funds have been approved for transfer to a destination account.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u32 |
| source | T::AccountId |
AccountId |
| delegate | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
AssetFrozen¶
Some asset asset_id was frozen.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u32 |
AssetStatusChanged¶
An asset has had its attributes changed by the Force origin.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u32 |
AssetThawed¶
Some asset asset_id was thawed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u32 |
Burned¶
Some assets were destroyed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u32 |
| owner | T::AccountId |
AccountId |
| balance | T::Balance |
u128 |
Created¶
Some asset class was created.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u32 |
| creator | T::AccountId |
AccountId |
| owner | T::AccountId |
AccountId |
Destroyed¶
An asset class was destroyed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u32 |
ForceCreated¶
Some asset class was force-created.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u32 |
| owner | T::AccountId |
AccountId |
Frozen¶
Some account who was frozen.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u32 |
| who | T::AccountId |
AccountId |
Issued¶
Some assets were issued.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u32 |
| owner | T::AccountId |
AccountId |
| total_supply | T::Balance |
u128 |
MetadataCleared¶
Metadata has been cleared for an asset.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u32 |
MetadataSet¶
New metadata has been set for an asset.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u32 |
| name | Vec<u8> |
Bytes |
| symbol | Vec<u8> |
Bytes |
| decimals | u8 |
u8 |
| is_frozen | bool |
bool |
OwnerChanged¶
The owner changed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u32 |
| owner | T::AccountId |
AccountId |
TeamChanged¶
The management team changed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u32 |
| issuer | T::AccountId |
AccountId |
| admin | T::AccountId |
AccountId |
| freezer | T::AccountId |
AccountId |
Thawed¶
Some account who was thawed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u32 |
| who | T::AccountId |
AccountId |
Transferred¶
Some assets were transferred.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u32 |
| from | T::AccountId |
AccountId |
| to | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
TransferredApproved¶
An amount was transferred in its entirety from owner to destination by
the approved delegate.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u32 |
| owner | T::AccountId |
AccountId |
| delegate | T::AccountId |
AccountId |
| destination | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Storage functions¶
Account¶
The holdings of a specific account for a specific asset.
Python¶
result = substrate.query(
'Assets', 'Account', ['u32', 'AccountId']
)
Return value¶
{
'balance': 'u128',
'extra': (),
'is_frozen': 'bool',
'reason': {
'Consumer': None,
'DepositHeld': 'u128',
'DepositRefunded': None,
'Sufficient': None,
},
}
Approvals¶
Approved balance transfers. First balance is the amount approved for transfer. Second
is the amount of T::Currency reserved for storing this.
First key is the asset ID, second key is the owner and third key is the delegate.
Python¶
result = substrate.query(
'Assets', 'Approvals', ['u32', 'AccountId', 'AccountId']
)
Return value¶
{'amount': 'u128', 'deposit': 'u128'}
Asset¶
Details of an asset.
Python¶
result = substrate.query(
'Assets', 'Asset', ['u32']
)
Return value¶
{
'accounts': 'u32',
'admin': 'AccountId',
'approvals': 'u32',
'deposit': 'u128',
'freezer': 'AccountId',
'is_frozen': 'bool',
'is_sufficient': 'bool',
'issuer': 'AccountId',
'min_balance': 'u128',
'owner': 'AccountId',
'sufficients': 'u32',
'supply': 'u128',
}
Metadata¶
Metadata of an asset.
Python¶
result = substrate.query(
'Assets', 'Metadata', ['u32']
)
Return value¶
{
'decimals': 'u8',
'deposit': 'u128',
'is_frozen': 'bool',
'name': 'Bytes',
'symbol': 'Bytes',
}
Constants¶
ApprovalDeposit¶
The amount of funds that must be reserved when creating a new approval.
Value¶
100000000000
Python¶
constant = substrate.get_constant('Assets', 'ApprovalDeposit')
AssetAccountDeposit¶
The amount of funds that must be reserved for a non-provider asset account to be maintained.
Value¶
1110000000000
Python¶
constant = substrate.get_constant('Assets', 'AssetAccountDeposit')
AssetDeposit¶
The basic amount of funds that must be reserved for an asset.
Value¶
1000000000000
Python¶
constant = substrate.get_constant('Assets', 'AssetDeposit')
MetadataDepositBase¶
The basic amount of funds that must be reserved when adding metadata to your asset.
Value¶
4230000000000
Python¶
constant = substrate.get_constant('Assets', 'MetadataDepositBase')
MetadataDepositPerByte¶
The additional funds that must be reserved for the number of bytes you store in your metadata.
Value¶
60000000000
Python¶
constant = substrate.get_constant('Assets', 'MetadataDepositPerByte')
StringLimit¶
The maximum length of a name or symbol stored on-chain.
Value¶
50
Python¶
constant = substrate.get_constant('Assets', 'StringLimit')
Errors¶
AlreadyExists¶
The asset-account already exists.
BadMetadata¶
Invalid metadata given.
BadWitness¶
Invalid witness data given.
BalanceLow¶
Account balance must be greater than or equal to the transfer amount.
Frozen¶
The origin account is frozen.
InUse¶
The asset ID is already taken.
MinBalanceZero¶
Minimum balance should be non-zero.
NoAccount¶
The account to alter does not exist.
NoDeposit¶
The asset-account doesn't have an associated deposit.
NoPermission¶
The signing account has no permission to do the operation.
NoProvider¶
Unable to increment the consumer reference counters on the account. Either no provider reference exists to allow a non-zero balance of a non-self-sufficient asset, or the maximum number of consumers has been reached.
Unapproved¶
No approval exists that would allow the transfer.
Unknown¶
The given asset ID is unknown.
WouldBurn¶
The operation would result in funds being burned.
WouldDie¶
The source account would not survive the transfer and it needs to stay alive.
Aura¶
Storage functions¶
Authorities¶
The current authority set.
Python¶
result = substrate.query(
'Aura', 'Authorities', []
)
Return value¶
['[u8; 32]']
CurrentSlot¶
The current slot of this block.
This will be set in on_initialize.
Python¶
result = substrate.query(
'Aura', 'CurrentSlot', []
)
Return value¶
'u64'
AuraExt¶
Storage functions¶
Authorities¶
Serves as cache for the authorities.
The authorities in AuRa are overwritten in on_initialize when we switch to a new session,
but we require the old authorities to verify the seal when validating a PoV. This will always
be updated to the latest AuRa authorities in on_finalize.
Python¶
result = substrate.query(
'AuraExt', 'Authorities', []
)
Return value¶
['[u8; 32]']
Authorship¶
Calls¶
set_uncles¶
Provide a set of uncles.
Attributes¶
| Name | Type |
|---|---|
| new_uncles | Vec<T::Header> |
Python¶
call = substrate.compose_call(
'Authorship', 'set_uncles', {
'new_uncles': [
{
'digest': {
'logs': [
{
'Other': 'Bytes',
None: None,
'Consensus': (
'[u8; 4]',
'Bytes',
),
'PreRuntime': (
'[u8; 4]',
'Bytes',
),
'RuntimeEnvironmentUpdated': None,
'Seal': (
'[u8; 4]',
'Bytes',
),
},
],
},
'extrinsics_root': '[u8; 32]',
'number': 'u32',
'parent_hash': '[u8; 32]',
'state_root': '[u8; 32]',
},
],
}
)
Storage functions¶
Author¶
Author of current block.
Python¶
result = substrate.query(
'Authorship', 'Author', []
)
Return value¶
'AccountId'
DidSetUncles¶
Whether uncles were already set in this block.
Python¶
result = substrate.query(
'Authorship', 'DidSetUncles', []
)
Return value¶
'bool'
Uncles¶
Uncles
Python¶
result = substrate.query(
'Authorship', 'Uncles', []
)
Return value¶
[{'InclusionHeight': 'u32', 'Uncle': ('[u8; 32]', (None, 'AccountId'))}]
Constants¶
UncleGenerations¶
The number of blocks back we should accept uncles.
This means that we will deal with uncle-parents that are
UncleGenerations + 1 before now.
Value¶
0
Python¶
constant = substrate.get_constant('Authorship', 'UncleGenerations')
Errors¶
GenesisUncle¶
The uncle is genesis.
InvalidUncleParent¶
The uncle parent not in the chain.
OldUncle¶
The uncle isn't recent enough to be included.
TooHighUncle¶
The uncle is too high in chain.
TooManyUncles¶
Too many uncles.
UncleAlreadyIncluded¶
The uncle is already included.
UnclesAlreadySet¶
Uncles already set in the block.
Balances¶
Calls¶
force_transfer¶
Exactly as transfer, except the origin must be root and the source account may be
specified.
# <weight>
- Same as transfer, but additional read and write because the source account is not
assumed to be in the overlay.
# </weight>
Attributes¶
| Name | Type |
|---|---|
| source | AccountIdLookupOf<T> |
| dest | AccountIdLookupOf<T> |
| value | T::Balance |
Python¶
call = substrate.compose_call(
'Balances', 'force_transfer', {
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'source': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'value': 'u128',
}
)
force_unreserve¶
Unreserve some balance from a user by force.
Can only be called by ROOT.
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
| amount | T::Balance |
Python¶
call = substrate.compose_call(
'Balances', 'force_unreserve', {
'amount': 'u128',
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
set_balance¶
Set the balances of a given account.
This will alter FreeBalance and ReservedBalance in storage. it will
also alter the total issuance of the system (TotalIssuance) appropriately.
If the new free or reserved balance is below the existential deposit,
it will reset the account nonce (frame_system::AccountNonce).
The dispatch origin for this call is root.
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
| new_free | T::Balance |
| new_reserved | T::Balance |
Python¶
call = substrate.compose_call(
'Balances', 'set_balance', {
'new_free': 'u128',
'new_reserved': 'u128',
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
transfer¶
Transfer some liquid free balance to another account.
transfer will set the FreeBalance of the sender and receiver.
If the sender's account is below the existential deposit as a result
of the transfer, the account will be reaped.
The dispatch origin for this call must be Signed by the transactor.
# <weight> - Dependent on arguments but not critical, given proper implementations for input config types. See related functions below. - It contains a limited number of reads and writes internally and no complex computation.
Related functions:
ensure_can_withdrawis always called internally but has a bounded complexity.- Transferring balances to accounts that did not exist before will cause
T::OnNewAccount::on_new_accountto be called. - Removing enough funds from an account will trigger
T::DustRemoval::on_unbalanced. transfer_keep_aliveworks the same way astransfer, but has an additional check that the transfer will not kill the origin account.
- Origin account is already in memory, so no DB operations for them. # </weight>
Attributes¶
| Name | Type |
|---|---|
| dest | AccountIdLookupOf<T> |
| value | T::Balance |
Python¶
call = substrate.compose_call(
'Balances', 'transfer', {
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'value': 'u128',
}
)
transfer_all¶
Transfer the entire transferable balance from the caller account.
NOTE: This function only attempts to transfer transferable balances. This means that
any locked, reserved, or existential deposits (when keep_alive is true), will not be
transferred by this function. To ensure that this function results in a killed account,
you might need to prepare the account by removing any reference counters, storage
deposits, etc...
The dispatch origin of this call must be Signed.
dest: The recipient of the transfer.keep_alive: A boolean to determine if thetransfer_alloperation should send all of the funds the account has, causing the sender account to be killed (false), or transfer everything except at least the existential deposit, which will guarantee to keep the sender account alive (true). # <weight>- O(1). Just like transfer, but reading the user's transferable balance first. #</weight>
Attributes¶
| Name | Type |
|---|---|
| dest | AccountIdLookupOf<T> |
| keep_alive | bool |
Python¶
call = substrate.compose_call(
'Balances', 'transfer_all', {
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'keep_alive': 'bool',
}
)
transfer_keep_alive¶
Same as the [transfer] call, but with a check that the transfer will not kill the
origin account.
99% of the time you want [transfer] instead.
Attributes¶
| Name | Type |
|---|---|
| dest | AccountIdLookupOf<T> |
| value | T::Balance |
Python¶
call = substrate.compose_call(
'Balances', 'transfer_keep_alive', {
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'value': 'u128',
}
)
Events¶
BalanceSet¶
A balance was set by root.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| free | T::Balance |
u128 |
| reserved | T::Balance |
u128 |
Deposit¶
Some amount was deposited (e.g. for transaction fees).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
DustLost¶
An account was removed whose balance was non-zero but below ExistentialDeposit, resulting in an outright loss.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Endowed¶
An account was created with some free balance.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
| free_balance | T::Balance |
u128 |
ReserveRepatriated¶
Some balance was moved from the reserve of the first account to the second account. Final argument indicates the destination balance type.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| from | T::AccountId |
AccountId |
| to | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
| destination_status | Status |
('Free', 'Reserved') |
Reserved¶
Some balance was reserved (moved from free to reserved).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Slashed¶
Some amount was removed from the account (e.g. for misbehavior).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Transfer¶
Transfer succeeded.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| from | T::AccountId |
AccountId |
| to | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Unreserved¶
Some balance was unreserved (moved from reserved to free).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Withdraw¶
Some amount was withdrawn from the account (e.g. for transaction fees).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Storage functions¶
Account¶
The Balances pallet example of storing the balance of an account.
# Example
nocompile
impl pallet_balances::Config for Runtime {
type AccountStore = StorageMapShim<Self::Account<Runtime>, frame_system::Provider<Runtime>, AccountId, Self::AccountData<Balance>>
}
You can also store the balance of an account in the System pallet.
# Example
nocompile
impl pallet_balances::Config for Runtime {
type AccountStore = System
}
But this comes with tradeoffs, storing account balances in the system pallet stores
frame_system data alongside the account data contrary to storing account balances in the
Balances pallet, which uses a StorageMap to store balances data only.
NOTE: This is only used in the case that this pallet is used to store balances.
Python¶
result = substrate.query(
'Balances', 'Account', ['AccountId']
)
Return value¶
{
'fee_frozen': 'u128',
'free': 'u128',
'misc_frozen': 'u128',
'reserved': 'u128',
}
Locks¶
Any liquidity locks on some account balances. NOTE: Should only be accessed when setting, changing and freeing a lock.
Python¶
result = substrate.query(
'Balances', 'Locks', ['AccountId']
)
Return value¶
[{'amount': 'u128', 'id': '[u8; 8]', 'reasons': ('Fee', 'Misc', 'All')}]
Reserves¶
Named reserves on some account balances.
Python¶
result = substrate.query(
'Balances', 'Reserves', ['AccountId']
)
Return value¶
[{'amount': 'u128', 'id': '[u8; 8]'}]
StorageVersion¶
Storage version of the pallet.
This is set to v2.0.0 for new networks.
Python¶
result = substrate.query(
'Balances', 'StorageVersion', []
)
Return value¶
('V1_0_0', 'V2_0_0')
TotalIssuance¶
The total units issued in the system.
Python¶
result = substrate.query(
'Balances', 'TotalIssuance', []
)
Return value¶
'u128'
Constants¶
ExistentialDeposit¶
The minimum amount required to keep an account open.
Value¶
100000000000
Python¶
constant = substrate.get_constant('Balances', 'ExistentialDeposit')
MaxLocks¶
The maximum number of locks that should exist on an account. Not strictly enforced, but used for weight estimation.
Value¶
50
Python¶
constant = substrate.get_constant('Balances', 'MaxLocks')
MaxReserves¶
The maximum number of named reserves that can exist on an account.
Value¶
0
Python¶
constant = substrate.get_constant('Balances', 'MaxReserves')
Errors¶
DeadAccount¶
Beneficiary account must pre-exist
ExistentialDeposit¶
Value too low to create account due to existential deposit
ExistingVestingSchedule¶
A vesting schedule already exists for this account
InsufficientBalance¶
Balance too low to send value
KeepAlive¶
Transfer/payment would kill account
LiquidityRestrictions¶
Account liquidity restrictions prevent withdrawal
TooManyReserves¶
Number of named reserves exceed MaxReserves
VestingBalance¶
Vesting balance too high to send value
Bridge¶
Calls¶
clean_cap_accumulated_value¶
Clean the accumulated cap value to make bridge work again
Attributes¶
| Name | Type |
|---|---|
| bridge_token_id | CurrencyId |
| bridge_type | BridgeType |
Python¶
call = substrate.compose_call(
'Bridge', 'clean_cap_accumulated_value', {
'bridge_token_id': 'u32',
'bridge_type': (
'BridgeOut',
'BridgeIn',
),
}
)
materialize¶
Materialize the bridge token to specified recipient in this chain
The first call to the same cross-chain transaction will create a proposal And subsequent calls will update the existing state until completion
src_id: chain_id of the source chain, should be registered.src_nonce: nonce of the source chain, should be unique to identify the cross-cahin tx.bridge_token_id: bridge_token_id of the bridge token to be materialized, should be registered.to: recipient of the bridge token of this chainamount: amount to be materialized, the decimal of bridge token may be differentfavour: whether to favour the cross-chain transaction or not, always be true for now.
Attributes¶
| Name | Type |
|---|---|
| src_id | ChainId |
| src_nonce | ChainNonce |
| bridge_token_id | CurrencyId |
| to | T::AccountId |
| amount | BalanceOf<T> |
| favour | bool |
Python¶
call = substrate.compose_call(
'Bridge', 'materialize', {
'amount': 'u128',
'bridge_token_id': 'u32',
'favour': 'bool',
'src_id': 'u32',
'src_nonce': 'u64',
'to': 'AccountId',
}
)
register_bridge_token¶
Register the specified bridge_token_id
Only registered bridge_tokens are allowed to cross-chain
bridge_token: bridge_token_id should be unique.
Attributes¶
| Name | Type |
|---|---|
| asset_id | AssetIdOf<T> |
| bridge_token | BridgeToken |
Python¶
call = substrate.compose_call(
'Bridge', 'register_bridge_token', {
'asset_id': 'u32',
'bridge_token': {
'enable': 'bool',
'external': 'bool',
'fee': 'u128',
'id': 'u32',
'in_amount': 'u128',
'in_cap': 'u128',
'out_amount': 'u128',
'out_cap': 'u128',
},
}
)
register_chain¶
Register the specified chain_id
Only registered chains are allowed to do cross-chain
chain_id: should be unique.
Attributes¶
| Name | Type |
|---|---|
| chain_id | ChainId |
Python¶
call = substrate.compose_call(
'Bridge', 'register_chain', {'chain_id': 'u32'}
)
set_bridge_token_cap¶
Set the cross-chain transaction cap for a registered bridge token
Attributes¶
| Name | Type |
|---|---|
| bridge_token_id | CurrencyId |
| bridge_type | BridgeType |
| new_cap | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'Bridge', 'set_bridge_token_cap', {
'bridge_token_id': 'u32',
'bridge_type': (
'BridgeOut',
'BridgeIn',
),
'new_cap': 'u128',
}
)
set_bridge_token_fee¶
Set the cross-chain transaction fee for a registered bridge token
Attributes¶
| Name | Type |
|---|---|
| bridge_token_id | CurrencyId |
| new_fee | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'Bridge', 'set_bridge_token_fee', {
'bridge_token_id': 'u32',
'new_fee': 'u128',
}
)
set_bridge_token_status¶
Set the cross-chain transaction fee for a registered bridge token
Attributes¶
| Name | Type |
|---|---|
| bridge_token_id | CurrencyId |
| enable | bool |
Python¶
call = substrate.compose_call(
'Bridge', 'set_bridge_token_status', {
'bridge_token_id': 'u32',
'enable': 'bool',
}
)
teleport¶
Teleport the bridge token to specified recipient in the destination chain
Transfer funds from one account to an account in another registered chain. Support for native token and tokens of Assets pallet The caller's assets will be locked into palletId
dest_id: chain_id of the destination chain, should be registered.bridge_token_id: bridge token should be registered before teleport.to: recipient of the bridge token of another chainamount: amount to be teleported, the decimal of bridge token may be different
Attributes¶
| Name | Type |
|---|---|
| dest_id | ChainId |
| bridge_token_id | CurrencyId |
| to | TeleAccount |
| amount | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'Bridge', 'teleport', {
'amount': 'u128',
'bridge_token_id': 'u32',
'dest_id': 'u32',
'to': 'Bytes',
}
)
unregister_bridge_token¶
Unregister the specified bridge_token_id
Attributes¶
| Name | Type |
|---|---|
| bridge_token_id | CurrencyId |
Python¶
call = substrate.compose_call(
'Bridge', 'unregister_bridge_token', {'bridge_token_id': 'u32'}
)
unregister_chain¶
Unregister the specified chain_id
Attributes¶
| Name | Type |
|---|---|
| chain_id | ChainId |
Python¶
call = substrate.compose_call(
'Bridge', 'unregister_chain', {'chain_id': 'u32'}
)
Events¶
BridgeTokenAccumulatedValueCleaned¶
The accumulated cap value cleaned [bridge_token_id, bridge_type]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | CurrencyId |
u32 |
| None | BridgeType |
('BridgeOut', 'BridgeIn') |
BridgeTokenCapUpdated¶
The status of the bridge token cap has updated [bridge_token_id, bridge_type, new_cap]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | CurrencyId |
u32 |
| None | BridgeType |
('BridgeOut', 'BridgeIn') |
| None | BalanceOf<T> |
u128 |
BridgeTokenFeeUpdated¶
Bridge token fee has updated [bridge_token_id, fee]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | CurrencyId |
u32 |
| None | BalanceOf<T> |
u128 |
BridgeTokenRegistered¶
New bridge_token_id has been registered [asset_id, bridge_token_id, external, fee, enable, out_cap, out_amount, in_cap, in_amount]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | AssetIdOf<T> |
u32 |
| None | CurrencyId |
u32 |
| None | bool |
bool |
| None | BalanceOf<T> |
u128 |
| None | bool |
bool |
| None | BalanceOf<T> |
u128 |
| None | BalanceOf<T> |
u128 |
| None | BalanceOf<T> |
u128 |
| None | BalanceOf<T> |
u128 |
BridgeTokenRemoved¶
The bridge_token_id has been unregistered [asset_id, bridge_token_id]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | AssetIdOf<T> |
u32 |
| None | CurrencyId |
u32 |
BridgeTokenStatusUpdated¶
The status of the bridge token has updated [bridge_token_id, enabled]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | CurrencyId |
u32 |
| None | bool |
bool |
ChainRegistered¶
New chain_id has been registered [chain_id]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ChainId |
u32 |
ChainRemoved¶
The chain_id has been unregistered [chain_id]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ChainId |
u32 |
MaterializeInitialized¶
Event emitted when a proposal is initialized by materialization [voter, src_id, src_nonce, bridge_token_id, dst_address, amount]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | ChainId |
u32 |
| None | ChainNonce |
u64 |
| None | CurrencyId |
u32 |
| None | T::AccountId |
AccountId |
| None | BalanceOf<T> |
u128 |
MaterializeMinted¶
Event emitted when bridge token is issued by materialization [src_id, chain_nonce, bridge_token_id, dst_address, amount]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ChainId |
u32 |
| None | ChainNonce |
u64 |
| None | CurrencyId |
u32 |
| None | T::AccountId |
AccountId |
| None | BalanceOf<T> |
u128 |
MaterializeVoteAgainst¶
Vote against a proposal [src_id, src_nonce, voter, bridge_token_id, dst_address, amount]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ChainId |
u32 |
| None | ChainNonce |
u64 |
| None | T::AccountId |
AccountId |
| None | CurrencyId |
u32 |
| None | T::AccountId |
AccountId |
| None | BalanceOf<T> |
u128 |
MaterializeVoteFor¶
Vote for a proposal [src_id, src_nonce, voter, bridge_token_id, dst_address, amount]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ChainId |
u32 |
| None | ChainNonce |
u64 |
| None | T::AccountId |
AccountId |
| None | CurrencyId |
u32 |
| None | T::AccountId |
AccountId |
| None | BalanceOf<T> |
u128 |
ProposalApproved¶
Proposal was approved successfully [src_id, src_nonce]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ChainId |
u32 |
| None | ChainNonce |
u64 |
ProposalRejected¶
Proposal was rejected [src_id, src_nonce]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ChainId |
u32 |
| None | ChainNonce |
u64 |
TeleportBurned¶
Event emitted when bridge token is destroyed by teleportation [ori_address, dest_id, chain_nonce, bridge_token_id, dst_address, amount, fee]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | ChainId |
u32 |
| None | ChainNonce |
u64 |
| None | CurrencyId |
u32 |
| None | TeleAccount |
Bytes |
| None | BalanceOf<T> |
u128 |
| None | BalanceOf<T> |
u128 |
VoteThresholdUpdated¶
Vote threshold has updated [vote_threshold]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | u32 |
u32 |
Storage functions¶
AssetIds¶
Python¶
result = substrate.query(
'Bridge', 'AssetIds', ['u32']
)
Return value¶
'u32'
BridgeRegistry¶
Python¶
result = substrate.query(
'Bridge', 'BridgeRegistry', ['u32']
)
Return value¶
[('u64', 'u64')]
BridgeTokens¶
Python¶
result = substrate.query(
'Bridge', 'BridgeTokens', ['u32']
)
Return value¶
{
'enable': 'bool',
'external': 'bool',
'fee': 'u128',
'id': 'u32',
'in_amount': 'u128',
'in_cap': 'u128',
'out_amount': 'u128',
'out_cap': 'u128',
}
ChainNonces¶
Python¶
result = substrate.query(
'Bridge', 'ChainNonces', ['u32']
)
Return value¶
'u64'
ProposalVotes¶
Mapping of [chain_id -> (nonce, call) -> proposal]
Python¶
result = substrate.query(
'Bridge', 'ProposalVotes', [
'u32',
(
'u64',
{
'amount': 'u128',
'bridge_token_id': 'u32',
'to': 'AccountId',
},
),
]
)
Return value¶
{
'expiry': 'u32',
'status': ('Initiated', 'Approved', 'Rejected'),
'votes_against': ['AccountId'],
'votes_for': ['AccountId'],
}
VoteThreshold¶
Python¶
result = substrate.query(
'Bridge', 'VoteThreshold', []
)
Return value¶
'u32'
Constants¶
ChainId¶
The identifier for this chain. This must be unique and must not collide with existing IDs within a set of bridged chains.
Value¶
1
Python¶
constant = substrate.get_constant('Bridge', 'ChainId')
ExistentialDeposit¶
The essential balance for an existed account
Value¶
100000000000
Python¶
constant = substrate.get_constant('Bridge', 'ExistentialDeposit')
GiftAccount¶
An account to pay the bonus
Value¶
'p8DR3iQJe3tN8R8aEnNyXRRWYaVWnhSCYwFE3WA76uezsQh45'
Python¶
constant = substrate.get_constant('Bridge', 'GiftAccount')
NativeCurrencyId¶
Currency id of the native token
Value¶
1
Python¶
constant = substrate.get_constant('Bridge', 'NativeCurrencyId')
PalletId¶
The bridge's pallet id, keep all teleported assets.
Value¶
'0x7061722f62726964'
Python¶
constant = substrate.get_constant('Bridge', 'PalletId')
ProposalLifetime¶
Each proposal can live up to [ProposalLifetime] blocks
Value¶
2592000
Python¶
constant = substrate.get_constant('Bridge', 'ProposalLifetime')
RootOperatorAccountId¶
The root operator account id
Value¶
'p8AxskWHQBViXqKEeX2nUCLmxNrzQrDLd75fcJzDbGTTVUbBz'
Python¶
constant = substrate.get_constant('Bridge', 'RootOperatorAccountId')
ThresholdPercentage¶
The threshold percentage of relayers required to approve a proposal
Value¶
80
Python¶
constant = substrate.get_constant('Bridge', 'ThresholdPercentage')
Errors¶
BridgeInCapExceeded¶
The bridging amount is exceed the capacity
BridgeOutCapExceeded¶
The bridging amount is exceed the capacity
BridgeTokenAlreadyRegistered¶
The bridge token is invalid, it cannot be a existed bridge_token_id
BridgeTokenDisabled¶
The bridge token is not available in cross-chain
BridgeTokenNotRegistered¶
The bridge token is not registered and the related operation will be invalid
BridgingAmountTooLow¶
The bridging amount is too low
ChainIdAlreadyRegistered¶
The chain_id is invalid, it cannot be a existed chain_id or this chain_id
ChainIdNotRegistered¶
The chain_id is not registered and the related operation will be invalid
InvalidVoteThreshold¶
The new threshold is invalid
MemberAlreadyVoted¶
The RelayMembers already vote for the proposal
OriginNoPermission¶
Origin has no permission to operate on the bridge
ProposalAlreadyComplete¶
Proposal has been finished
ProposalDoesNotExist¶
No proposal was found
ProposalExpired¶
The proposal has exceeded its life time.
BridgeMembership¶
Calls¶
add_member¶
Add a member who to the set.
May only be called from T::AddOrigin.
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'BridgeMembership', 'add_member', {
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
change_key¶
Swap out the sending member for some other key new.
May only be called from Signed origin of a current member.
Prime membership is passed from the origin account to new, if extant.
Attributes¶
| Name | Type |
|---|---|
| new | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'BridgeMembership', 'change_key', {
'new': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
clear_prime¶
Remove the prime member if it exists.
May only be called from T::PrimeOrigin.
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'BridgeMembership', 'clear_prime', {}
)
remove_member¶
Remove a member who from the set.
May only be called from T::RemoveOrigin.
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'BridgeMembership', 'remove_member', {
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
reset_members¶
Change the membership to a new set, disregarding the existing membership. Be nice and
pass members pre-sorted.
May only be called from T::ResetOrigin.
Attributes¶
| Name | Type |
|---|---|
| members | Vec<T::AccountId> |
Python¶
call = substrate.compose_call(
'BridgeMembership', 'reset_members', {'members': ['AccountId']}
)
set_prime¶
Set the prime member. Must be a current member.
May only be called from T::PrimeOrigin.
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'BridgeMembership', 'set_prime', {
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
swap_member¶
Swap out one member remove for another add.
May only be called from T::SwapOrigin.
Prime membership is not passed from remove to add, if extant.
Attributes¶
| Name | Type |
|---|---|
| remove | AccountIdLookupOf<T> |
| add | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'BridgeMembership', 'swap_member', {
'add': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'remove': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
Events¶
Dummy¶
Phantom member, never used.
Attributes¶
No attributes
KeyChanged¶
One of the members' keys changed.
Attributes¶
No attributes
MemberAdded¶
The given member was added; see the transaction for who.
Attributes¶
No attributes
MemberRemoved¶
The given member was removed; see the transaction for who.
Attributes¶
No attributes
MembersReset¶
The membership was reset; see the transaction for who the new set is.
Attributes¶
No attributes
MembersSwapped¶
Two members were swapped; see the transaction for who.
Attributes¶
No attributes
Storage functions¶
Members¶
The current membership, stored as an ordered Vec.
Python¶
result = substrate.query(
'BridgeMembership', 'Members', []
)
Return value¶
['AccountId']
Prime¶
The current prime member, if one exists.
Python¶
result = substrate.query(
'BridgeMembership', 'Prime', []
)
Return value¶
'AccountId'
Errors¶
AlreadyMember¶
Already a member.
NotMember¶
Not a member.
TooManyMembers¶
Too many members.
CollatorSelection¶
Calls¶
leave_intent¶
Deregister origin as a collator candidate. Note that the collator can only leave on
session change. The CandidacyBond will be unreserved immediately.
This call will fail if the total number of candidates would drop below MinCandidates.
This call is not available to Invulnerable collators.
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'CollatorSelection', 'leave_intent', {}
)
register_as_candidate¶
Register this account as a collator candidate. The account must (a) already have
registered session keys and (b) be able to reserve the CandidacyBond.
This call is not available to Invulnerable collators.
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'CollatorSelection', 'register_as_candidate', {}
)
set_candidacy_bond¶
Set the candidacy bond amount.
Attributes¶
| Name | Type |
|---|---|
| bond | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'CollatorSelection', 'set_candidacy_bond', {'bond': 'u128'}
)
set_desired_candidates¶
Set the ideal number of collators (not including the invulnerables). If lowering this number, then the number of running collators could be higher than this figure. Aside from that edge case, there should be no other way to have more collators than the desired number.
Attributes¶
| Name | Type |
|---|---|
| max | u32 |
Python¶
call = substrate.compose_call(
'CollatorSelection', 'set_desired_candidates', {'max': 'u32'}
)
set_invulnerables¶
Set the list of invulnerable (fixed) collators.
Attributes¶
| Name | Type |
|---|---|
| new | Vec<T::AccountId> |
Python¶
call = substrate.compose_call(
'CollatorSelection', 'set_invulnerables', {'new': ['AccountId']}
)
Events¶
CandidateAdded¶
Attributes¶
| Name | Type | Composition |
|---|---|---|
| account_id | T::AccountId |
AccountId |
| deposit | BalanceOf<T> |
u128 |
CandidateRemoved¶
Attributes¶
| Name | Type | Composition |
|---|---|---|
| account_id | T::AccountId |
AccountId |
NewCandidacyBond¶
Attributes¶
| Name | Type | Composition |
|---|---|---|
| bond_amount | BalanceOf<T> |
u128 |
NewDesiredCandidates¶
Attributes¶
| Name | Type | Composition |
|---|---|---|
| desired_candidates | u32 |
u32 |
NewInvulnerables¶
Attributes¶
| Name | Type | Composition |
|---|---|---|
| invulnerables | Vec<T::AccountId> |
['AccountId'] |
Storage functions¶
CandidacyBond¶
Fixed amount to deposit to become a collator.
When a collator calls leave_intent they immediately receive the deposit back.
Python¶
result = substrate.query(
'CollatorSelection', 'CandidacyBond', []
)
Return value¶
'u128'
Candidates¶
The (community, limited) collation candidates.
Python¶
result = substrate.query(
'CollatorSelection', 'Candidates', []
)
Return value¶
[{'deposit': 'u128', 'who': 'AccountId'}]
DesiredCandidates¶
Desired number of candidates.
This should ideally always be less than [Config::MaxCandidates] for weights to be correct.
Python¶
result = substrate.query(
'CollatorSelection', 'DesiredCandidates', []
)
Return value¶
'u32'
Invulnerables¶
The invulnerable, fixed collators.
Python¶
result = substrate.query(
'CollatorSelection', 'Invulnerables', []
)
Return value¶
['AccountId']
LastAuthoredBlock¶
Last block authored by collator.
Python¶
result = substrate.query(
'CollatorSelection', 'LastAuthoredBlock', ['AccountId']
)
Return value¶
'u32'
Errors¶
AlreadyCandidate¶
User is already a candidate
AlreadyInvulnerable¶
User is already an Invulnerable
NoAssociatedValidatorId¶
Account has no associated validator ID
NotCandidate¶
User is not a candidate
Permission¶
Permission issue
TooFewCandidates¶
Too few candidates
TooManyCandidates¶
Too many candidates
TooManyInvulnerables¶
Too many invulnerables
Unknown¶
Unknown error
ValidatorNotRegistered¶
Validator ID is not yet registered
Crowdloans¶
Calls¶
auction_failed¶
If a crowdloan failed, get the coins back and mark the vault as ready
for distribution
Attributes¶
| Name | Type |
|---|---|
| crowdloan | ParaId |
Python¶
call = substrate.compose_call(
'Crowdloans', 'auction_failed', {'crowdloan': 'u32'}
)
auction_succeeded¶
Mark the associated vault as Succeed if vault is Closed
Attributes¶
| Name | Type |
|---|---|
| crowdloan | ParaId |
Python¶
call = substrate.compose_call(
'Crowdloans', 'auction_succeeded', {'crowdloan': 'u32'}
)
claim¶
If a crowdloan succeeded, claim the liquid derivatives of the
contributed assets
Attributes¶
| Name | Type |
|---|---|
| crowdloan | ParaId |
| lease_start | LeasePeriod |
| lease_end | LeasePeriod |
Python¶
call = substrate.compose_call(
'Crowdloans', 'claim', {
'crowdloan': 'u32',
'lease_end': 'u32',
'lease_start': 'u32',
}
)
claim_for¶
If a crowdloan succeeded, claim the liquid derivatives of the
contributed assets for others
Attributes¶
| Name | Type |
|---|---|
| dest | <T::Lookup as StaticLookup>::Source |
| crowdloan | ParaId |
| lease_start | LeasePeriod |
| lease_end | LeasePeriod |
Python¶
call = substrate.compose_call(
'Crowdloans', 'claim_for', {
'crowdloan': 'u32',
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'lease_end': 'u32',
'lease_start': 'u32',
}
)
close¶
Mark the associated vault as Closed and stop accepting contributions
Attributes¶
| Name | Type |
|---|---|
| crowdloan | ParaId |
Python¶
call = substrate.compose_call(
'Crowdloans', 'close', {'crowdloan': 'u32'}
)
contribute¶
Contribute amount to the vault of crowdloan and receive some
shares from it
Attributes¶
| Name | Type |
|---|---|
| crowdloan | ParaId |
| amount | BalanceOf<T> |
| referral_code | Vec<u8> |
Python¶
call = substrate.compose_call(
'Crowdloans', 'contribute', {
'amount': 'u128',
'crowdloan': 'u32',
'referral_code': 'Bytes',
}
)
create_vault¶
Create a new vault via a governance decision
crowdloan: parachain id of the crowdloan, should be consistent with relaychainctoken: ctoken is used for the vault, should be uniquelease_start: lease start indexlease_end: lease end indexcontribution_strategy: currently, only XCM strategy is supported.cap: the capacity limit for the vaultend_block: the crowdloan end block for the vault
Attributes¶
| Name | Type |
|---|---|
| crowdloan | ParaId |
| ctoken | AssetIdOf<T> |
| lease_start | LeasePeriod |
| lease_end | LeasePeriod |
| contribution_strategy | ContributionStrategy |
| cap | BalanceOf<T> |
| end_block | BlockNumberFor<T> |
Python¶
call = substrate.compose_call(
'Crowdloans', 'create_vault', {
'cap': 'u128',
'contribution_strategy': (
'XCM',
'XCMPROXY',
),
'crowdloan': 'u32',
'ctoken': 'u32',
'end_block': 'u32',
'lease_end': 'u32',
'lease_start': 'u32',
}
)
dissolve_vault¶
Dissolve vault
Attributes¶
| Name | Type |
|---|---|
| crowdloan | ParaId |
| lease_start | LeasePeriod |
| lease_end | LeasePeriod |
Python¶
call = substrate.compose_call(
'Crowdloans', 'dissolve_vault', {
'crowdloan': 'u32',
'lease_end': 'u32',
'lease_start': 'u32',
}
)
migrate_pending¶
Migrate pending contribution by sending xcm
Attributes¶
| Name | Type |
|---|---|
| crowdloan | ParaId |
Python¶
call = substrate.compose_call(
'Crowdloans', 'migrate_pending', {'crowdloan': 'u32'}
)
notification_received¶
Attributes¶
| Name | Type |
|---|---|
| query_id | QueryId |
| response | Response |
Python¶
call = substrate.compose_call(
'Crowdloans', 'notification_received', {
'query_id': 'u64',
'response': {
'Assets': [
{
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': 'scale_info::62',
'parents': 'u8',
},
},
},
],
'ExecutionResult': (
None,
(
'u32',
{
'AssetNotFound': None,
'BadOrigin': None,
'Barrier': None,
'DestinationUnsupported': None,
'ExceedsMaxMessageSize': None,
'FailedToDecode': None,
'FailedToTransactAsset': None,
'InvalidLocation': None,
'LocationCannotHold': None,
'MaxWeightInvalid': None,
'MultiLocationFull': None,
'MultiLocationNotInvertible': None,
'NotHoldingFees': None,
'NotWithdrawable': None,
'Overflow': None,
'TooExpensive': None,
'Transport': None,
'Trap': 'u64',
'UnhandledXcmVersion': None,
'Unimplemented': None,
'UnknownClaim': None,
'Unroutable': None,
'UntrustedReserveLocation': None,
'UntrustedTeleportLocation': None,
'WeightLimitReached': 'u64',
'WeightNotComputable': None,
},
),
),
'Null': None,
'Version': 'u32',
},
}
)
open¶
Mark the associated vault as ready for real contributions on the relaychain
Attributes¶
| Name | Type |
|---|---|
| crowdloan | ParaId |
Python¶
call = substrate.compose_call(
'Crowdloans', 'open', {'crowdloan': 'u32'}
)
redeem¶
If a crowdloan expired, redeem the contributed assets
using ctoken
Attributes¶
| Name | Type |
|---|---|
| crowdloan | ParaId |
| lease_start | LeasePeriod |
| lease_end | LeasePeriod |
| amount | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'Crowdloans', 'redeem', {
'amount': 'u128',
'crowdloan': 'u32',
'lease_end': 'u32',
'lease_start': 'u32',
}
)
refund¶
Refund contributions
Attributes¶
| Name | Type |
|---|---|
| crowdloan | ParaId |
| lease_start | LeasePeriod |
| lease_end | LeasePeriod |
Python¶
call = substrate.compose_call(
'Crowdloans', 'refund', {
'crowdloan': 'u32',
'lease_end': 'u32',
'lease_start': 'u32',
}
)
refund_for¶
Refund contributions for single user
Once relaychain is in vrf but parachain didn't update vrf in time. Contributions received during this period should be refund to users, especially for those succeeded parachains.
Attributes¶
| Name | Type |
|---|---|
| dest | <T::Lookup as StaticLookup>::Source |
| crowdloan | ParaId |
| kind | ChildStorageKind |
| amount | BalanceOf<T> |
| lease_start | LeasePeriod |
| lease_end | LeasePeriod |
Python¶
call = substrate.compose_call(
'Crowdloans', 'refund_for', {
'amount': 'u128',
'crowdloan': 'u32',
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'kind': (
'Pending',
'Flying',
'Contributed',
),
'lease_end': 'u32',
'lease_start': 'u32',
}
)
reopen¶
Mark the associated vault as Contributing and continue to accept contributions
Attributes¶
| Name | Type |
|---|---|
| crowdloan | ParaId |
Python¶
call = substrate.compose_call(
'Crowdloans', 'reopen', {'crowdloan': 'u32'}
)
set_vrf¶
Set crowdloans which entered vrf period
Attributes¶
| Name | Type |
|---|---|
| flag | bool |
Python¶
call = substrate.compose_call(
'Crowdloans', 'set_vrf', {'flag': 'bool'}
)
slot_expired¶
If a crowdloan succeeded and its slot expired, use call to
claim back the funds lent to the parachain
Attributes¶
| Name | Type |
|---|---|
| crowdloan | ParaId |
Python¶
call = substrate.compose_call(
'Crowdloans', 'slot_expired', {'crowdloan': 'u32'}
)
update_leases_bonus¶
Update crowdloans proxy address in relaychain
Attributes¶
| Name | Type |
|---|---|
| lease_start | LeasePeriod |
| lease_end | LeasePeriod |
| bonus_config | BonusConfig<BalanceOf<T>> |
Python¶
call = substrate.compose_call(
'Crowdloans', 'update_leases_bonus', {
'bonus_config': {
'bonus_per_token': 'u128',
'end_time': 'u64',
'start_time': 'u64',
},
'lease_end': 'u32',
'lease_start': 'u32',
}
)
update_proxy¶
Update crowdloans proxy address in relaychain
Attributes¶
| Name | Type |
|---|---|
| proxy_address | AccountIdOf<T> |
Python¶
call = substrate.compose_call(
'Crowdloans', 'update_proxy', {'proxy_address': 'AccountId'}
)
update_vault¶
Update an existing vault via a governance decision
Attributes¶
| Name | Type |
|---|---|
| crowdloan | ParaId |
| cap | Option<BalanceOf<T>> |
| end_block | Option<BlockNumberFor<T>> |
| contribution_strategy | Option<ContributionStrategy> |
Python¶
call = substrate.compose_call(
'Crowdloans', 'update_vault', {
'cap': (None, 'u128'),
'contribution_strategy': (
None,
('XCM', 'XCMPROXY'),
),
'crowdloan': 'u32',
'end_block': (None, 'u32'),
}
)
withdraw¶
If a crowdloan failed, withdraw the contributed assets
Attributes¶
| Name | Type |
|---|---|
| crowdloan | ParaId |
| lease_start | LeasePeriod |
| lease_end | LeasePeriod |
Python¶
call = substrate.compose_call(
'Crowdloans', 'withdraw', {
'crowdloan': 'u32',
'lease_end': 'u32',
'lease_start': 'u32',
}
)
withdraw_for¶
If a crowdloan failed, withdraw the contributed assets for others
Attributes¶
| Name | Type |
|---|---|
| dest | <T::Lookup as StaticLookup>::Source |
| crowdloan | ParaId |
| lease_start | LeasePeriod |
| lease_end | LeasePeriod |
Python¶
call = substrate.compose_call(
'Crowdloans', 'withdraw_for', {
'crowdloan': 'u32',
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'lease_end': 'u32',
'lease_start': 'u32',
}
)
Events¶
AllMigrated¶
All contributions migrated [para_id, vault_id]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
| None | VaultId |
('u32', 'u32') |
AllRefunded¶
Partially Refunded [para_id, vault_id]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
| None | VaultId |
('u32', 'u32') |
LeasesBonusUpdated¶
Update leases bonus
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | VaultId |
('u32', 'u32') |
| None | BonusConfig<BalanceOf<T>> |
{'bonus_per_token': 'u128', 'start_time': 'u64', 'end_time': 'u64'} |
NotificationReceived¶
Notification received [multi_location, query_id, res]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | Box<MultiLocation> |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}})}} |
| None | QueryId |
u64 |
| None | Option<(u32, XcmError)> |
(None, ('u32', {'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None})) |
PartiallyMigrated¶
Partially contributions migrated [para_id, vault_id]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
| None | VaultId |
('u32', 'u32') |
PartiallyRefunded¶
Partially Refunded [para_id, vault_id]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
| None | VaultId |
('u32', 'u32') |
ProxyUpdated¶
Update proxy address [account]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
UserRefunded¶
Refunded [para_id, vault_id, account, child_storage_kind, amount]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
| None | VaultId |
('u32', 'u32') |
| None | T::AccountId |
AccountId |
| None | ChildStorageKind |
('Pending', 'Flying', 'Contributed') |
| None | BalanceOf<T> |
u128 |
VaultClaimed¶
A user claimed CToken from vault [para_id, vault_id, ctoken_id, account, amount, phase]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
| None | VaultId |
('u32', 'u32') |
| None | AssetIdOf<T> |
u32 |
| None | T::AccountId |
AccountId |
| None | BalanceOf<T> |
u128 |
| None | VaultPhase |
('Pending', 'Contributing', 'Closed', 'Failed', 'Succeeded', 'Expired') |
VaultContributed¶
Vault successfully contributed [para_id, vault_id, contributor, amount, referral_code]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
| None | VaultId |
('u32', 'u32') |
| None | T::AccountId |
AccountId |
| None | BalanceOf<T> |
u128 |
| None | Vec<u8> |
Bytes |
VaultCreated¶
New vault was created [para_id, vault_id, ctoken_id, phase, contribution_strategy, cap, end_block, trie_index]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
| None | VaultId |
('u32', 'u32') |
| None | AssetIdOf<T> |
u32 |
| None | VaultPhase |
('Pending', 'Contributing', 'Closed', 'Failed', 'Succeeded', 'Expired') |
| None | ContributionStrategy |
('XCM', 'XCMPROXY') |
| None | BalanceOf<T> |
u128 |
| None | BlockNumberFor<T> |
u32 |
| None | TrieIndex |
u32 |
VaultDissolved¶
Vault has been dissolved [para_id, vault_id]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
| None | VaultId |
('u32', 'u32') |
VaultDoContributing¶
Vault is trying to do contributing [para_id, vault_id, contributor, amount, referral_code]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
| None | VaultId |
('u32', 'u32') |
| None | T::AccountId |
AccountId |
| None | BalanceOf<T> |
u128 |
| None | Vec<u8> |
Bytes |
VaultDoWithdrawing¶
Vault is trying to do withdrawing [para_id, vault_id, amount, target_phase]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
| None | VaultId |
('u32', 'u32') |
| None | BalanceOf<T> |
u128 |
| None | VaultPhase |
('Pending', 'Contributing', 'Closed', 'Failed', 'Succeeded', 'Expired') |
VaultPhaseUpdated¶
Vault was opened [para_id, vault_id, pre_phase, now_phase]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
| None | VaultId |
('u32', 'u32') |
| None | VaultPhase |
('Pending', 'Contributing', 'Closed', 'Failed', 'Succeeded', 'Expired') |
| None | VaultPhase |
('Pending', 'Contributing', 'Closed', 'Failed', 'Succeeded', 'Expired') |
VaultRedeemed¶
A user redeemed contributed assets using CToken [para_id, vault_id, ctoken_id, account, amount, phase]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
| None | VaultId |
('u32', 'u32') |
| None | AssetIdOf<T> |
u32 |
| None | T::AccountId |
AccountId |
| None | BalanceOf<T> |
u128 |
| None | VaultPhase |
('Pending', 'Contributing', 'Closed', 'Failed', 'Succeeded', 'Expired') |
VaultUpdated¶
Existing vault was updated [para_id, vault_id, contribution_strategy, cap, end_block]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
| None | VaultId |
('u32', 'u32') |
| None | ContributionStrategy |
('XCM', 'XCMPROXY') |
| None | BalanceOf<T> |
u128 |
| None | BlockNumberFor<T> |
u32 |
VaultWithdrew¶
A user withdrew contributed assets from vault [para_id, vault_id, account, amount, phase]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
| None | VaultId |
('u32', 'u32') |
| None | T::AccountId |
AccountId |
| None | BalanceOf<T> |
u128 |
| None | VaultPhase |
('Pending', 'Contributing', 'Closed', 'Failed', 'Succeeded', 'Expired') |
VrfUpdated¶
Vrfs updated [vrf_flag]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | bool |
bool |
Storage functions¶
CTokensRegistry¶
Python¶
result = substrate.query(
'Crowdloans', 'CTokensRegistry', ['u32', 'u32']
)
Return value¶
'u32'
IsVrf¶
Python¶
result = substrate.query(
'Crowdloans', 'IsVrf', []
)
Return value¶
'bool'
LeasesBonus¶
Python¶
result = substrate.query(
'Crowdloans', 'LeasesBonus', ['u32', 'u32']
)
Return value¶
{'bonus_per_token': 'u128', 'end_time': 'u64', 'start_time': 'u64'}
LeasesRegistry¶
Python¶
result = substrate.query(
'Crowdloans', 'LeasesRegistry', ['u32']
)
Return value¶
('u32', 'u32')
NextTrieIndex¶
Python¶
result = substrate.query(
'Crowdloans', 'NextTrieIndex', []
)
Return value¶
'u32'
ProxyAddress¶
Python¶
result = substrate.query(
'Crowdloans', 'ProxyAddress', []
)
Return value¶
'AccountId'
StorageVersion¶
Storage version of the pallet.
Python¶
result = substrate.query(
'Crowdloans', 'StorageVersion', []
)
Return value¶
('V0_0_0', 'V1_0_0', 'V2_0_0')
Vaults¶
Python¶
result = substrate.query(
'Crowdloans', 'Vaults', ['u32', 'u32', 'u32']
)
Return value¶
{
'cap': 'u128',
'contributed': 'u128',
'contribution_strategy': ('XCM', 'XCMPROXY'),
'ctoken': 'u32',
'end_block': 'u32',
'flying': 'u128',
'lease_end': 'u32',
'lease_start': 'u32',
'pending': 'u128',
'phase': (
'Pending',
'Contributing',
'Closed',
'Failed',
'Succeeded',
'Expired',
),
'trie_index': 'u32',
}
XcmRequests¶
Python¶
result = substrate.query(
'Crowdloans', 'XcmRequests', ['u64']
)
Return value¶
{
'Contribute': {
'amount': 'u128',
'crowdloan': 'u32',
'referral_code': 'Bytes',
'vault_id': ('u32', 'u32'),
'who': 'AccountId',
},
'Withdraw': {
'amount': 'u128',
'crowdloan': 'u32',
'target_phase': (
'Pending',
'Contributing',
'Closed',
'Failed',
'Succeeded',
'Expired',
),
'vault_id': ('u32', 'u32'),
},
}
Constants¶
GetNativeCurrencyId¶
The asset id for native currency.
Value¶
1
Python¶
constant = substrate.get_constant('Crowdloans', 'GetNativeCurrencyId')
LeaseOffset¶
LeaseOffset from relaychain
Value¶
921600
Python¶
constant = substrate.get_constant('Crowdloans', 'LeaseOffset')
LeasePerYear¶
LeaseOffset from relaychain
Value¶
4
Python¶
constant = substrate.get_constant('Crowdloans', 'LeasePerYear')
LeasePeriod¶
LeasePeriod from relaychain
Value¶
1209600
Python¶
constant = substrate.get_constant('Crowdloans', 'LeasePeriod')
MigrateKeysLimit¶
Maximum keys to be migrated in one extrinsic
Value¶
5
Python¶
constant = substrate.get_constant('Crowdloans', 'MigrateKeysLimit')
MinContribution¶
Minimum contribute amount
Value¶
50000000000
Python¶
constant = substrate.get_constant('Crowdloans', 'MinContribution')
PalletId¶
Pallet account for collecting contributions
Value¶
'0x6372776c6f616e73'
Python¶
constant = substrate.get_constant('Crowdloans', 'PalletId')
RelayCurrency¶
Relay currency
Value¶
101
Python¶
constant = substrate.get_constant('Crowdloans', 'RelayCurrency')
RemoveKeysLimit¶
Value¶
1000
Python¶
constant = substrate.get_constant('Crowdloans', 'RemoveKeysLimit')
SelfParaId¶
Returns the parachain ID we are running with.
Value¶
2012
Python¶
constant = substrate.get_constant('Crowdloans', 'SelfParaId')
Errors¶
CTokenDoesNotExist¶
CToken does not exist
CapExceeded¶
Attempted contribution violates contribution cap
CrowdloanAlreadyExists¶
Crowdloan ParaId already exists
EmptyProxyAddress¶
Proxy address is empty
EndBlockExceeded¶
Current relay block is greater than vault end block
IncorrectVaultPhase¶
Vault is not in correct phase
InsufficientBalance¶
Balance is not enough
InsufficientContribution¶
Contribution is not enough
InvalidCToken¶
CToken for provided (leaseStart, leaseEnd) is different with what has been created previously
InvalidCap¶
Capacity cannot be zero value
InvalidParams¶
Invalid params input
LastPeriodBeforeFirstPeriod¶
Last lease period must be greater than first lease period.
NoContributions¶
There are no contributions stored in contributed childstorage
NotReadyToDissolve¶
Vault is not ready to be dissolved
VaultAlreadyExists¶
Vault already exists
VaultDoesNotExist¶
Vault does not exist
VaultNotEnded¶
Vault for provided ParaId not ended
VrfDelayInProgress¶
No contributions allowed during the VRF delay
WrongBonusConfig¶
BonusConfig is wrong
CrowdloansAutomatorsMembership¶
Calls¶
add_member¶
Add a member who to the set.
May only be called from T::AddOrigin.
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'CrowdloansAutomatorsMembership', 'add_member', {
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
change_key¶
Swap out the sending member for some other key new.
May only be called from Signed origin of a current member.
Prime membership is passed from the origin account to new, if extant.
Attributes¶
| Name | Type |
|---|---|
| new | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'CrowdloansAutomatorsMembership', 'change_key', {
'new': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
clear_prime¶
Remove the prime member if it exists.
May only be called from T::PrimeOrigin.
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'CrowdloansAutomatorsMembership', 'clear_prime', {}
)
remove_member¶
Remove a member who from the set.
May only be called from T::RemoveOrigin.
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'CrowdloansAutomatorsMembership', 'remove_member', {
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
reset_members¶
Change the membership to a new set, disregarding the existing membership. Be nice and
pass members pre-sorted.
May only be called from T::ResetOrigin.
Attributes¶
| Name | Type |
|---|---|
| members | Vec<T::AccountId> |
Python¶
call = substrate.compose_call(
'CrowdloansAutomatorsMembership', 'reset_members', {'members': ['AccountId']}
)
set_prime¶
Set the prime member. Must be a current member.
May only be called from T::PrimeOrigin.
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'CrowdloansAutomatorsMembership', 'set_prime', {
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
swap_member¶
Swap out one member remove for another add.
May only be called from T::SwapOrigin.
Prime membership is not passed from remove to add, if extant.
Attributes¶
| Name | Type |
|---|---|
| remove | AccountIdLookupOf<T> |
| add | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'CrowdloansAutomatorsMembership', 'swap_member', {
'add': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'remove': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
Events¶
Dummy¶
Phantom member, never used.
Attributes¶
No attributes
KeyChanged¶
One of the members' keys changed.
Attributes¶
No attributes
MemberAdded¶
The given member was added; see the transaction for who.
Attributes¶
No attributes
MemberRemoved¶
The given member was removed; see the transaction for who.
Attributes¶
No attributes
MembersReset¶
The membership was reset; see the transaction for who the new set is.
Attributes¶
No attributes
MembersSwapped¶
Two members were swapped; see the transaction for who.
Attributes¶
No attributes
Storage functions¶
Members¶
The current membership, stored as an ordered Vec.
Python¶
result = substrate.query(
'CrowdloansAutomatorsMembership', 'Members', []
)
Return value¶
['AccountId']
Prime¶
The current prime member, if one exists.
Python¶
result = substrate.query(
'CrowdloansAutomatorsMembership', 'Prime', []
)
Return value¶
'AccountId'
Errors¶
AlreadyMember¶
Already a member.
NotMember¶
Not a member.
TooManyMembers¶
Too many members.
CumulusXcm¶
Events¶
ExecutedDownward¶
Downward message executed with the given outcome. [ id, outcome ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | [u8; 8] |
[u8; 8] |
| None | Outcome |
{'Complete': 'u64', 'Incomplete': ('u64', {'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None}), 'Error': {'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None}} |
InvalidFormat¶
Downward message is invalid XCM. [ id ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | [u8; 8] |
[u8; 8] |
UnsupportedVersion¶
Downward message is unsupported version of XCM. [ id ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | [u8; 8] |
[u8; 8] |
CurrencyAdapter¶
Calls¶
force_remove_lock¶
Attributes¶
| Name | Type |
|---|---|
| asset | AssetIdOf<T> |
| who | T::AccountId |
Python¶
call = substrate.compose_call(
'CurrencyAdapter', 'force_remove_lock', {'asset': 'u32', 'who': 'AccountId'}
)
force_set_lock¶
Attributes¶
| Name | Type |
|---|---|
| asset | AssetIdOf<T> |
| who | T::AccountId |
| amount | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'CurrencyAdapter', 'force_set_lock', {
'amount': 'u128',
'asset': 'u32',
'who': 'AccountId',
}
)
Constants¶
GetNativeCurrencyId¶
Value¶
1
Python¶
constant = substrate.get_constant('CurrencyAdapter', 'GetNativeCurrencyId')
Errors¶
NotANativeToken¶
Not a native token
Democracy¶
Calls¶
blacklist¶
Permanently place a proposal into the blacklist. This prevents it from ever being proposed again.
If called on a queued public or external proposal, then this will result in it being
removed. If the ref_index supplied is an active referendum with the proposal hash,
then it will be cancelled.
The dispatch origin of this call must be BlacklistOrigin.
proposal_hash: The proposal hash to blacklist permanently.ref_index: An ongoing referendum whose hash isproposal_hash, which will be cancelled.
Weight: O(p) (though as this is an high-privilege dispatch, we assume it has a
reasonable value).
Attributes¶
| Name | Type |
|---|---|
| proposal_hash | H256 |
| maybe_ref_index | Option<ReferendumIndex> |
Python¶
call = substrate.compose_call(
'Democracy', 'blacklist', {
'maybe_ref_index': (None, 'u32'),
'proposal_hash': '[u8; 32]',
}
)
cancel_proposal¶
Remove a proposal.
The dispatch origin of this call must be CancelProposalOrigin.
prop_index: The index of the proposal to cancel.
Weight: O(p) where p = PublicProps::<T>::decode_len()
Attributes¶
| Name | Type |
|---|---|
| prop_index | PropIndex |
Python¶
call = substrate.compose_call(
'Democracy', 'cancel_proposal', {'prop_index': 'u32'}
)
cancel_referendum¶
Remove a referendum.
The dispatch origin of this call must be Root.
ref_index: The index of the referendum to cancel.
# Weight: O(1).
Attributes¶
| Name | Type |
|---|---|
| ref_index | ReferendumIndex |
Python¶
call = substrate.compose_call(
'Democracy', 'cancel_referendum', {'ref_index': 'u32'}
)
clear_public_proposals¶
Clears all public proposals.
The dispatch origin of this call must be Root.
Weight: O(1).
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'Democracy', 'clear_public_proposals', {}
)
delegate¶
Delegate the voting power (with some given conviction) of the sending account.
The balance delegated is locked for as long as it's delegated, and thereafter for the time appropriate for the conviction's lock period.
The dispatch origin of this call must be Signed, and the signing account must either:
- be delegating already; or
- have no voting activity (if there is, then it will need to be removed/consolidated
through reap_vote or unvote).
to: The account whose voting thetargetaccount's voting power will follow.conviction: The conviction that will be attached to the delegated votes. When the account is undelegated, the funds will be locked for the corresponding period.balance: The amount of the account's balance to be used in delegating. This must not be more than the account's current balance.
Emits Delegated.
Weight: O(R) where R is the number of referendums the voter delegating to has
voted on. Weight is charged as if maximum votes.
Attributes¶
| Name | Type |
|---|---|
| to | AccountIdLookupOf<T> |
| conviction | Conviction |
| balance | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'Democracy', 'delegate', {
'balance': 'u128',
'conviction': (
'None',
'Locked1x',
'Locked2x',
'Locked3x',
'Locked4x',
'Locked5x',
'Locked6x',
),
'to': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
emergency_cancel¶
Schedule an emergency cancellation of a referendum. Cannot happen twice to the same referendum.
The dispatch origin of this call must be CancellationOrigin.
-ref_index: The index of the referendum to cancel.
Weight: O(1).
Attributes¶
| Name | Type |
|---|---|
| ref_index | ReferendumIndex |
Python¶
call = substrate.compose_call(
'Democracy', 'emergency_cancel', {'ref_index': 'u32'}
)
external_propose¶
Schedule a referendum to be tabled once it is legal to schedule an external referendum.
The dispatch origin of this call must be ExternalOrigin.
proposal_hash: The preimage hash of the proposal.
Attributes¶
| Name | Type |
|---|---|
| proposal | BoundedCallOf<T> |
Python¶
call = substrate.compose_call(
'Democracy', 'external_propose', {
'proposal': {
'Inline': 'Bytes',
'Legacy': {'hash': '[u8; 32]'},
'Lookup': {
'hash': '[u8; 32]',
'len': 'u32',
},
},
}
)
external_propose_default¶
Schedule a negative-turnout-bias referendum to be tabled next once it is legal to schedule an external referendum.
The dispatch of this call must be ExternalDefaultOrigin.
proposal_hash: The preimage hash of the proposal.
Unlike external_propose, blacklisting has no effect on this and it may replace a
pre-scheduled external_propose call.
Weight: O(1)
Attributes¶
| Name | Type |
|---|---|
| proposal | BoundedCallOf<T> |
Python¶
call = substrate.compose_call(
'Democracy', 'external_propose_default', {
'proposal': {
'Inline': 'Bytes',
'Legacy': {'hash': '[u8; 32]'},
'Lookup': {
'hash': '[u8; 32]',
'len': 'u32',
},
},
}
)
external_propose_majority¶
Schedule a majority-carries referendum to be tabled next once it is legal to schedule an external referendum.
The dispatch of this call must be ExternalMajorityOrigin.
proposal_hash: The preimage hash of the proposal.
Unlike external_propose, blacklisting has no effect on this and it may replace a
pre-scheduled external_propose call.
Weight: O(1)
Attributes¶
| Name | Type |
|---|---|
| proposal | BoundedCallOf<T> |
Python¶
call = substrate.compose_call(
'Democracy', 'external_propose_majority', {
'proposal': {
'Inline': 'Bytes',
'Legacy': {'hash': '[u8; 32]'},
'Lookup': {
'hash': '[u8; 32]',
'len': 'u32',
},
},
}
)
fast_track¶
Schedule the currently externally-proposed majority-carries referendum to be tabled immediately. If there is no externally-proposed referendum currently, or if there is one but it is not a majority-carries referendum then it fails.
The dispatch of this call must be FastTrackOrigin.
proposal_hash: The hash of the current external proposal.voting_period: The period that is allowed for voting on this proposal. Increased to Must be always greater than zero. ForFastTrackOriginmust be equal or greater thanFastTrackVotingPeriod.delay: The number of block after voting has ended in approval and this should be enacted. This doesn't have a minimum amount.
Emits Started.
Weight: O(1)
Attributes¶
| Name | Type |
|---|---|
| proposal_hash | H256 |
| voting_period | T::BlockNumber |
| delay | T::BlockNumber |
Python¶
call = substrate.compose_call(
'Democracy', 'fast_track', {
'delay': 'u32',
'proposal_hash': '[u8; 32]',
'voting_period': 'u32',
}
)
propose¶
Propose a sensitive action to be taken.
The dispatch origin of this call must be Signed and the sender must have funds to cover the deposit.
proposal_hash: The hash of the proposal preimage.value: The amount of deposit (must be at leastMinimumDeposit).
Emits Proposed.
Attributes¶
| Name | Type |
|---|---|
| proposal | BoundedCallOf<T> |
| value | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'Democracy', 'propose', {
'proposal': {
'Inline': 'Bytes',
'Legacy': {'hash': '[u8; 32]'},
'Lookup': {
'hash': '[u8; 32]',
'len': 'u32',
},
},
'value': 'u128',
}
)
remove_other_vote¶
Remove a vote for a referendum.
If the target is equal to the signer, then this function is exactly equivalent to
remove_vote. If not equal to the signer, then the vote must have expired,
either because the referendum was cancelled, because the voter lost the referendum or
because the conviction period is over.
The dispatch origin of this call must be Signed.
target: The account of the vote to be removed; this account must have voted for referendumindex.index: The index of referendum of the vote to be removed.
Weight: O(R + log R) where R is the number of referenda that target has voted on.
Weight is calculated for the maximum number of vote.
Attributes¶
| Name | Type |
|---|---|
| target | AccountIdLookupOf<T> |
| index | ReferendumIndex |
Python¶
call = substrate.compose_call(
'Democracy', 'remove_other_vote', {
'index': 'u32',
'target': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
remove_vote¶
Remove a vote for a referendum.
If:
- the referendum was cancelled, or
- the referendum is ongoing, or
- the referendum has ended such that
- the vote of the account was in opposition to the result; or
- there was no conviction to the account's vote; or
- the account made a split vote
...then the vote is removed cleanly and a following call to unlock may result in more
funds being available.
If, however, the referendum has ended and: - it finished corresponding to the vote of the account, and - the account made a standard vote with conviction, and - the lock period of the conviction is not over ...then the lock will be aggregated into the overall account's lock, which may involve overlocking (where the two locks are combined into a single lock that is the maximum of both the amount locked and the time is it locked for).
The dispatch origin of this call must be Signed, and the signer must have a vote
registered for referendum index.
index: The index of referendum of the vote to be removed.
Weight: O(R + log R) where R is the number of referenda that target has voted on.
Weight is calculated for the maximum number of vote.
Attributes¶
| Name | Type |
|---|---|
| index | ReferendumIndex |
Python¶
call = substrate.compose_call(
'Democracy', 'remove_vote', {'index': 'u32'}
)
second¶
Signals agreement with a particular proposal.
The dispatch origin of this call must be Signed and the sender must have funds to cover the deposit, equal to the original deposit.
proposal: The index of the proposal to second.
Attributes¶
| Name | Type |
|---|---|
| proposal | PropIndex |
Python¶
call = substrate.compose_call(
'Democracy', 'second', {'proposal': 'u32'}
)
undelegate¶
Undelegate the voting power of the sending account.
Tokens may be unlocked following once an amount of time consistent with the lock period of the conviction with which the delegation was issued.
The dispatch origin of this call must be Signed and the signing account must be currently delegating.
Emits Undelegated.
Weight: O(R) where R is the number of referendums the voter delegating to has
voted on. Weight is charged as if maximum votes.
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'Democracy', 'undelegate', {}
)
unlock¶
Unlock tokens that have an expired lock.
The dispatch origin of this call must be Signed.
target: The account to remove the lock on.
Weight: O(R) with R number of vote of target.
Attributes¶
| Name | Type |
|---|---|
| target | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Democracy', 'unlock', {
'target': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
veto_external¶
Veto and blacklist the external proposal hash.
The dispatch origin of this call must be VetoOrigin.
proposal_hash: The preimage hash of the proposal to veto and blacklist.
Emits Vetoed.
Weight: O(V + log(V)) where V is number of existing vetoers
Attributes¶
| Name | Type |
|---|---|
| proposal_hash | H256 |
Python¶
call = substrate.compose_call(
'Democracy', 'veto_external', {'proposal_hash': '[u8; 32]'}
)
vote¶
Vote in a referendum. If vote.is_aye(), the vote is to enact the proposal;
otherwise it is a vote to keep the status quo.
The dispatch origin of this call must be Signed.
ref_index: The index of the referendum to vote for.vote: The vote configuration.
Attributes¶
| Name | Type |
|---|---|
| ref_index | ReferendumIndex |
| vote | AccountVote<BalanceOf<T>> |
Python¶
call = substrate.compose_call(
'Democracy', 'vote', {
'ref_index': 'u32',
'vote': {
'Split': {
'aye': 'u128',
'nay': 'u128',
},
'Standard': {
'balance': 'u128',
'vote': {
'aye': 'bool',
'conviction': (
'None',
'Locked1x',
'Locked2x',
'Locked3x',
'Locked4x',
'Locked5x',
'Locked6x',
),
},
},
},
}
)
Events¶
Blacklisted¶
A proposal_hash has been blacklisted permanently.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_hash | H256 |
[u8; 32] |
Cancelled¶
A referendum has been cancelled.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| ref_index | ReferendumIndex |
u32 |
Delegated¶
An account has delegated their vote to another account.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| target | T::AccountId |
AccountId |
ExternalTabled¶
An external proposal has been tabled.
Attributes¶
No attributes
NotPassed¶
A proposal has been rejected by referendum.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| ref_index | ReferendumIndex |
u32 |
Passed¶
A proposal has been approved by referendum.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| ref_index | ReferendumIndex |
u32 |
ProposalCanceled¶
A proposal got canceled.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| prop_index | PropIndex |
u32 |
Proposed¶
A motion has been proposed by a public account.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_index | PropIndex |
u32 |
| deposit | BalanceOf<T> |
u128 |
Seconded¶
An account has secconded a proposal
Attributes¶
| Name | Type | Composition |
|---|---|---|
| seconder | T::AccountId |
AccountId |
| prop_index | PropIndex |
u32 |
Started¶
A referendum has begun.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| ref_index | ReferendumIndex |
u32 |
| threshold | VoteThreshold |
('SuperMajorityApprove', 'SuperMajorityAgainst', 'SimpleMajority') |
Tabled¶
A public proposal has been tabled for referendum vote.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_index | PropIndex |
u32 |
| deposit | BalanceOf<T> |
u128 |
Undelegated¶
An account has cancelled a previous delegation operation.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
Vetoed¶
An external proposal has been vetoed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| proposal_hash | H256 |
[u8; 32] |
| until | T::BlockNumber |
u32 |
Voted¶
An account has voted in a referendum
Attributes¶
| Name | Type | Composition |
|---|---|---|
| voter | T::AccountId |
AccountId |
| ref_index | ReferendumIndex |
u32 |
| vote | AccountVote<BalanceOf<T>> |
{'Standard': {'vote': {'aye': 'bool', 'conviction': ('None', 'Locked1x', 'Locked2x', 'Locked3x', 'Locked4x', 'Locked5x', 'Locked6x')}, 'balance': 'u128'}, 'Split': {'aye': 'u128', 'nay': 'u128'}} |
Storage functions¶
Blacklist¶
A record of who vetoed what. Maps proposal hash to a possible existent block number (until when it may not be resubmitted) and who vetoed it.
Python¶
result = substrate.query(
'Democracy', 'Blacklist', ['[u8; 32]']
)
Return value¶
('u32', ['AccountId'])
Cancellations¶
Record of all proposals that have been subject to emergency cancellation.
Python¶
result = substrate.query(
'Democracy', 'Cancellations', ['[u8; 32]']
)
Return value¶
'bool'
DepositOf¶
Those who have locked a deposit.
TWOX-NOTE: Safe, as increasing integer keys are safe.
Python¶
result = substrate.query(
'Democracy', 'DepositOf', ['u32']
)
Return value¶
(['AccountId'], 'u128')
LastTabledWasExternal¶
True if the last referendum tabled was submitted externally. False if it was a public proposal.
Python¶
result = substrate.query(
'Democracy', 'LastTabledWasExternal', []
)
Return value¶
'bool'
LowestUnbaked¶
The lowest referendum index representing an unbaked referendum. Equal to
ReferendumCount if there isn't a unbaked referendum.
Python¶
result = substrate.query(
'Democracy', 'LowestUnbaked', []
)
Return value¶
'u32'
NextExternal¶
The referendum to be tabled whenever it would be valid to table an external proposal.
This happens when a referendum needs to be tabled and one of two conditions are met:
- LastTabledWasExternal is false; or
- PublicProps is empty.
Python¶
result = substrate.query(
'Democracy', 'NextExternal', []
)
Return value¶
(
{
'Inline': 'Bytes',
'Legacy': {'hash': '[u8; 32]'},
'Lookup': {'hash': '[u8; 32]', 'len': 'u32'},
},
('SuperMajorityApprove', 'SuperMajorityAgainst', 'SimpleMajority'),
)
PublicPropCount¶
The number of (public) proposals that have been made so far.
Python¶
result = substrate.query(
'Democracy', 'PublicPropCount', []
)
Return value¶
'u32'
PublicProps¶
The public proposals. Unsorted. The second item is the proposal.
Python¶
result = substrate.query(
'Democracy', 'PublicProps', []
)
Return value¶
[
(
'u32',
{
'Inline': 'Bytes',
'Legacy': {'hash': '[u8; 32]'},
'Lookup': {'hash': '[u8; 32]', 'len': 'u32'},
},
'AccountId',
),
]
ReferendumCount¶
The next free referendum index, aka the number of referenda started so far.
Python¶
result = substrate.query(
'Democracy', 'ReferendumCount', []
)
Return value¶
'u32'
ReferendumInfoOf¶
Information concerning any given referendum.
TWOX-NOTE: SAFE as indexes are not under an attacker’s control.
Python¶
result = substrate.query(
'Democracy', 'ReferendumInfoOf', ['u32']
)
Return value¶
{
'Finished': {'approved': 'bool', 'end': 'u32'},
'Ongoing': {
'delay': 'u32',
'end': 'u32',
'proposal': {
'Inline': 'Bytes',
'Legacy': {'hash': '[u8; 32]'},
'Lookup': {'hash': '[u8; 32]', 'len': 'u32'},
},
'tally': {'ayes': 'u128', 'nays': 'u128', 'turnout': 'u128'},
'threshold': (
'SuperMajorityApprove',
'SuperMajorityAgainst',
'SimpleMajority',
),
},
}
VotingOf¶
All votes for a particular voter. We store the balance for the number of votes that we have recorded. The second item is the total amount of delegations, that will be added.
TWOX-NOTE: SAFE as AccountIds are crypto hashes anyway.
Python¶
result = substrate.query(
'Democracy', 'VotingOf', ['AccountId']
)
Return value¶
{
'Delegating': {
'balance': 'u128',
'conviction': (
'None',
'Locked1x',
'Locked2x',
'Locked3x',
'Locked4x',
'Locked5x',
'Locked6x',
),
'delegations': {'capital': 'u128', 'votes': 'u128'},
'prior': ('u32', 'u128'),
'target': 'AccountId',
},
'Direct': {
'delegations': {'capital': 'u128', 'votes': 'u128'},
'prior': ('u32', 'u128'),
'votes': [('u32', {'Split': 'InnerStruct', 'Standard': 'InnerStruct'})],
},
}
Constants¶
CooloffPeriod¶
Period in blocks where an external proposal may not be re-submitted after being vetoed.
Value¶
50400
Python¶
constant = substrate.get_constant('Democracy', 'CooloffPeriod')
EnactmentPeriod¶
The period between a proposal being approved and enacted.
It should generally be a little more than the unstake period to ensure that voting stakers have an opportunity to remove themselves from the system in the case where they are on the losing side of a vote.
Value¶
7200
Python¶
constant = substrate.get_constant('Democracy', 'EnactmentPeriod')
FastTrackVotingPeriod¶
Minimum voting period allowed for a fast-track referendum.
Value¶
900
Python¶
constant = substrate.get_constant('Democracy', 'FastTrackVotingPeriod')
InstantAllowed¶
Indicator for whether an emergency origin is even allowed to happen. Some chains may
want to set this permanently to false, others may want to condition it on things such
as an upgrade having happened recently.
Value¶
True
Python¶
constant = substrate.get_constant('Democracy', 'InstantAllowed')
LaunchPeriod¶
How often (in blocks) new public referenda are launched.
Value¶
7200
Python¶
constant = substrate.get_constant('Democracy', 'LaunchPeriod')
MaxBlacklisted¶
The maximum number of items which can be blacklisted.
Value¶
100
Python¶
constant = substrate.get_constant('Democracy', 'MaxBlacklisted')
MaxDeposits¶
The maximum number of deposits a public proposal may have at any time.
Value¶
100
Python¶
constant = substrate.get_constant('Democracy', 'MaxDeposits')
MaxProposals¶
The maximum number of public proposals that can exist at any time.
Value¶
100
Python¶
constant = substrate.get_constant('Democracy', 'MaxProposals')
MaxVotes¶
The maximum number of votes for an account.
Also used to compute weight, an overly big value can
lead to extrinsic with very big weight: see delegate for instance.
Value¶
100
Python¶
constant = substrate.get_constant('Democracy', 'MaxVotes')
MinimumDeposit¶
The minimum amount to be used as a deposit for a public referendum proposal.
Value¶
100000000000000
Python¶
constant = substrate.get_constant('Democracy', 'MinimumDeposit')
VoteLockingPeriod¶
The minimum period of vote locking.
It should be no shorter than enactment period to ensure that in the case of an approval, those successful voters are locked into the consequences that their votes entail.
Value¶
7200
Python¶
constant = substrate.get_constant('Democracy', 'VoteLockingPeriod')
VotingPeriod¶
How often (in blocks) to check for new votes.
Value¶
36000
Python¶
constant = substrate.get_constant('Democracy', 'VotingPeriod')
Errors¶
AlreadyCanceled¶
Cannot cancel the same proposal twice
AlreadyDelegating¶
The account is already delegating.
AlreadyVetoed¶
Identity may not veto a proposal twice
DuplicateProposal¶
Proposal already made
InstantNotAllowed¶
The instant referendum origin is currently disallowed.
InsufficientFunds¶
Too high a balance was provided that the account cannot afford.
InvalidHash¶
Invalid hash
MaxVotesReached¶
Maximum number of votes reached.
NoPermission¶
The actor has no permission to conduct the action.
NoProposal¶
No external proposal
NoneWaiting¶
No proposals waiting
Nonsense¶
Delegation to oneself makes no sense.
NotDelegating¶
The account is not currently delegating.
NotSimpleMajority¶
Next external proposal not simple majority
NotVoter¶
The given account did not vote on the referendum.
ProposalBlacklisted¶
Proposal still blacklisted
ProposalMissing¶
Proposal does not exist
ReferendumInvalid¶
Vote given for invalid referendum
TooMany¶
Maximum number of items reached.
ValueLow¶
Value too low
VotesExist¶
The account currently has votes attached to it and the operation cannot succeed until
these are removed, either through unvote or reap_vote.
VotingPeriodLow¶
Voting period too low
WrongUpperBound¶
Invalid upper bound.
DmpQueue¶
Calls¶
service_overweight¶
Service a single overweight message.
origin: Must passExecuteOverweightOrigin.index: The index of the overweight message to service.weight_limit: The amount of weight that message execution may take.
Errors:
- Unknown: Message of index is unknown.
- OverLimit: Message execution may use greater than weight_limit.
Events:
- OverweightServiced: On success.
Attributes¶
| Name | Type |
|---|---|
| index | OverweightIndex |
| weight_limit | XcmWeight |
Python¶
call = substrate.compose_call(
'DmpQueue', 'service_overweight', {
'index': 'u64',
'weight_limit': 'u64',
}
)
Events¶
ExecutedDownward¶
Downward message executed with the given outcome.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| message_id | MessageId |
[u8; 32] |
| outcome | Outcome |
{'Complete': 'u64', 'Incomplete': ('u64', {'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None}), 'Error': {'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None}} |
InvalidFormat¶
Downward message is invalid XCM.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| message_id | MessageId |
[u8; 32] |
OverweightEnqueued¶
Downward message is overweight and was placed in the overweight queue.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| message_id | MessageId |
[u8; 32] |
| overweight_index | OverweightIndex |
u64 |
| required_weight | Weight |
{'ref_time': 'u64', 'proof_size': 'u64'} |
OverweightServiced¶
Downward message from the overweight queue was executed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| overweight_index | OverweightIndex |
u64 |
| weight_used | Weight |
{'ref_time': 'u64', 'proof_size': 'u64'} |
UnsupportedVersion¶
Downward message is unsupported version of XCM.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| message_id | MessageId |
[u8; 32] |
WeightExhausted¶
The weight limit for handling downward messages was reached.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| message_id | MessageId |
[u8; 32] |
| remaining_weight | Weight |
{'ref_time': 'u64', 'proof_size': 'u64'} |
| required_weight | Weight |
{'ref_time': 'u64', 'proof_size': 'u64'} |
Storage functions¶
Configuration¶
The configuration.
Python¶
result = substrate.query(
'DmpQueue', 'Configuration', []
)
Return value¶
{'max_individual': {'proof_size': 'u64', 'ref_time': 'u64'}}
Overweight¶
The overweight messages.
Python¶
result = substrate.query(
'DmpQueue', 'Overweight', ['u64']
)
Return value¶
('u32', 'Bytes')
PageIndex¶
The page index.
Python¶
result = substrate.query(
'DmpQueue', 'PageIndex', []
)
Return value¶
{'begin_used': 'u32', 'end_used': 'u32', 'overweight_count': 'u64'}
Pages¶
The queue pages.
Python¶
result = substrate.query(
'DmpQueue', 'Pages', ['u32']
)
Return value¶
[('u32', 'Bytes')]
Errors¶
OverLimit¶
The amount of weight given is possibly not enough for executing the message.
Unknown¶
The message index given is unknown.
EmergencyShutdown¶
Calls¶
toggle_call¶
Attributes¶
| Name | Type |
|---|---|
| pallet_idx | u8 |
| call_idx | u8 |
Python¶
call = substrate.compose_call(
'EmergencyShutdown', 'toggle_call', {'call_idx': 'u8', 'pallet_idx': 'u8'}
)
toggle_pallet¶
Toggle the shutdown flag
Attributes¶
| Name | Type |
|---|---|
| pallet_idx | u8 |
Python¶
call = substrate.compose_call(
'EmergencyShutdown', 'toggle_pallet', {'pallet_idx': 'u8'}
)
Events¶
ToggledCall¶
Toggled Call [flag]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | bool |
bool |
ToggledPallet¶
Toggled Pallet [flag]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | bool |
bool |
Storage functions¶
DisabledCalls¶
Python¶
result = substrate.query(
'EmergencyShutdown', 'DisabledCalls', ['u8', 'u8']
)
Return value¶
'bool'
DisabledPallets¶
Python¶
result = substrate.query(
'EmergencyShutdown', 'DisabledPallets', ['u8']
)
Return value¶
'bool'
Farming¶
Calls¶
claim¶
Claim reward asset from pool
Origin must be Signed.
asset: The identifier of the staking asset.reward_asset: The identifier of the reward asset.lock_duration: Lock block number after Deposit.
Attributes¶
| Name | Type |
|---|---|
| asset | AssetIdOf<T> |
| reward_asset | AssetIdOf<T> |
| lock_duration | T::BlockNumber |
Python¶
call = substrate.compose_call(
'Farming', 'claim', {
'asset': 'u32',
'lock_duration': 'u32',
'reward_asset': 'u32',
}
)
create¶
Create new pool from a privileged origin. Pool can be identified by a pair of asset and reward_asset.
The origin must conform to UpdateOrigin.
asset: The identifier of the staking asset.reward_asset: The identifier of the reward asset.lock_duration: Lock block number after Deposit.cool_down_duration: Lock block number after Withdraw.
Attributes¶
| Name | Type |
|---|---|
| asset | AssetIdOf<T> |
| reward_asset | AssetIdOf<T> |
| lock_duration | T::BlockNumber |
| cool_down_duration | T::BlockNumber |
Python¶
call = substrate.compose_call(
'Farming', 'create', {
'asset': 'u32',
'cool_down_duration': 'u32',
'lock_duration': 'u32',
'reward_asset': 'u32',
}
)
deposit¶
Depositing Assets to reward Pool
The origin must be Signed and the sender must have sufficient balance of staking asset.
asset: The identifier of the staking asset.reward_asset: The identifier of the reward asset.lock_duration: Lock block number after Deposit.amount: the amount of staking asset want to deposit.
Attributes¶
| Name | Type |
|---|---|
| asset | AssetIdOf<T> |
| reward_asset | AssetIdOf<T> |
| lock_duration | T::BlockNumber |
| amount | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'Farming', 'deposit', {
'amount': 'u128',
'asset': 'u32',
'lock_duration': 'u32',
'reward_asset': 'u32',
}
)
dispatch_reward¶
Dispatch reward asset with specified amount and duration
The origin must conform to UpdateOrigin.
asset: The identifier of the staking asset.reward_asset: The identifier of the reward asset.lock_duration: Lock block number after Deposit.payer: the payer of reward asset.amount: the amount of reward asset to dispatch.duration: the number of block this reward will last for.
Attributes¶
| Name | Type |
|---|---|
| asset | AssetIdOf<T> |
| reward_asset | AssetIdOf<T> |
| lock_duration | T::BlockNumber |
| payer | <T::Lookup as StaticLookup>::Source |
| amount | BalanceOf<T> |
| reward_duration | T::BlockNumber |
Python¶
call = substrate.compose_call(
'Farming', 'dispatch_reward', {
'amount': 'u128',
'asset': 'u32',
'lock_duration': 'u32',
'payer': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'reward_asset': 'u32',
'reward_duration': 'u32',
}
)
redeem¶
Redeem unlocked balance of staking asset from Pool
Origin must be Signed.
asset: The identifier of the staking asset.reward_asset: The identifier of the reward asset.lock_duration: Lock block number after Deposit.
Attributes¶
| Name | Type |
|---|---|
| asset | AssetIdOf<T> |
| reward_asset | AssetIdOf<T> |
| lock_duration | T::BlockNumber |
Python¶
call = substrate.compose_call(
'Farming', 'redeem', {
'asset': 'u32',
'lock_duration': 'u32',
'reward_asset': 'u32',
}
)
reset_pool_unlock_height¶
Reset pool unlock height
The origin must conform to UpdateOrigin.
asset: The identifier of the staking asset.reward_asset: The identifier of the reward asset.lock_duration: Lock block number after Deposit.
Attributes¶
| Name | Type |
|---|---|
| asset | AssetIdOf<T> |
| reward_asset | AssetIdOf<T> |
| lock_duration | T::BlockNumber |
Python¶
call = substrate.compose_call(
'Farming', 'reset_pool_unlock_height', {
'asset': 'u32',
'lock_duration': 'u32',
'reward_asset': 'u32',
}
)
set_pool_cool_down_duration¶
Set pool cool down duration
The origin must conform to UpdateOrigin.
asset: The identifier of the staking asset.reward_asset: The identifier of the reward asset.lock_duration: Lock block number after Deposit.cool_down_duration: new lock block number after Withdraw.
Attributes¶
| Name | Type |
|---|---|
| asset | AssetIdOf<T> |
| reward_asset | AssetIdOf<T> |
| lock_duration | T::BlockNumber |
| cool_down_duration | T::BlockNumber |
Python¶
call = substrate.compose_call(
'Farming', 'set_pool_cool_down_duration', {
'asset': 'u32',
'cool_down_duration': 'u32',
'lock_duration': 'u32',
'reward_asset': 'u32',
}
)
set_pool_status¶
Set pool active status
The origin must conform to UpdateOrigin.
asset: The identifier of the staking asset.reward_asset: The identifier of the reward asset.lock_duration: Lock block number after Deposit.is_active: new active status.
Attributes¶
| Name | Type |
|---|---|
| asset | AssetIdOf<T> |
| reward_asset | AssetIdOf<T> |
| lock_duration | T::BlockNumber |
| is_active | bool |
Python¶
call = substrate.compose_call(
'Farming', 'set_pool_status', {
'asset': 'u32',
'is_active': 'bool',
'lock_duration': 'u32',
'reward_asset': 'u32',
}
)
withdraw¶
Withdrawing Assets from reward Pool
The origin must be Signed and the sender must have sufficient deposited balance.
asset: The identifier of the staking asset.reward_asset: The identifier of the reward asset.lock_duration: Lock block number after Deposit.amount: the amount of staking asset want to withdraw.
Attributes¶
| Name | Type |
|---|---|
| asset | AssetIdOf<T> |
| reward_asset | AssetIdOf<T> |
| lock_duration | T::BlockNumber |
| amount | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'Farming', 'withdraw', {
'amount': 'u128',
'asset': 'u32',
'lock_duration': 'u32',
'reward_asset': 'u32',
}
)
Events¶
AssetsDeposited¶
Deposited Assets in pool
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | AssetIdOf<T> |
u32 |
| None | AssetIdOf<T> |
u32 |
| None | T::BlockNumber |
u32 |
| None | BalanceOf<T> |
u128 |
AssetsRedeem¶
Redeem Assets from lock pool
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | AssetIdOf<T> |
u32 |
| None | AssetIdOf<T> |
u32 |
| None | T::BlockNumber |
u32 |
| None | BalanceOf<T> |
u128 |
AssetsWithdrew¶
Withdrew Assets from pool
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | AssetIdOf<T> |
u32 |
| None | AssetIdOf<T> |
u32 |
| None | T::BlockNumber |
u32 |
| None | BalanceOf<T> |
u128 |
PoolAdded¶
Add new pool
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | AssetIdOf<T> |
u32 |
| None | AssetIdOf<T> |
u32 |
| None | T::BlockNumber |
u32 |
PoolCoolDownDurationChanged¶
Pool new cool down duration was set.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | AssetIdOf<T> |
u32 |
| None | AssetIdOf<T> |
u32 |
| None | T::BlockNumber |
u32 |
| None | T::BlockNumber |
u32 |
PoolStatusChanged¶
Pool new status was set.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | AssetIdOf<T> |
u32 |
| None | AssetIdOf<T> |
u32 |
| None | T::BlockNumber |
u32 |
| None | bool |
bool |
PoolUnlockHeightReset¶
Pool unlock height was reset.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | AssetIdOf<T> |
u32 |
| None | AssetIdOf<T> |
u32 |
| None | T::BlockNumber |
u32 |
| None | T::BlockNumber |
u32 |
RewardAdded¶
Reward added
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | AssetIdOf<T> |
u32 |
| None | AssetIdOf<T> |
u32 |
| None | T::BlockNumber |
u32 |
| None | BalanceOf<T> |
u128 |
RewardPaid¶
Reward Paid for user
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | AssetIdOf<T> |
u32 |
| None | AssetIdOf<T> |
u32 |
| None | T::BlockNumber |
u32 |
| None | BalanceOf<T> |
u128 |
Storage functions¶
Pools¶
Each pool is associated to a stake asset and reward asset pair
Python¶
result = substrate.query(
'Farming', 'Pools', ['u32', 'u32', 'u32']
)
Return value¶
{
'cool_down_duration': 'u32',
'is_active': 'bool',
'last_update_block': 'u32',
'period_finish': 'u32',
'reward_duration': 'u32',
'reward_per_share_stored': 'u128',
'reward_rate': 'u128',
'total_deposited': 'u128',
'unlock_height': 'u32',
}
Positions¶
User position in pool which is associated to a stake asset and reward asset pair
Python¶
result = substrate.query(
'Farming', 'Positions', ['u32', 'u32', 'u32', 'AccountId']
)
Return value¶
{
'deposit_balance': 'u128',
'lock_balance_items': [('u128', 'u32')],
'reward_amount': 'u128',
'reward_per_share_paid': 'u128',
}
Constants¶
CoolDownMaxDuration¶
Specifies upper limit of cool down duration for pool
Value¶
50400
Python¶
constant = substrate.get_constant('Farming', 'CoolDownMaxDuration')
LockPoolMaxDuration¶
Specifies upper limit of lock duration for lock pool
Value¶
2628000
Python¶
constant = substrate.get_constant('Farming', 'LockPoolMaxDuration')
MaxUserLockItemsCount¶
Specifies max amount lock item for a user
Value¶
100
Python¶
constant = substrate.get_constant('Farming', 'MaxUserLockItemsCount')
PalletId¶
Defines the pallet's pallet id from which we can define each pool's account id
Value¶
'0x7061722f6661726d'
Python¶
constant = substrate.get_constant('Farming', 'PalletId')
Errors¶
CodecError¶
Codec error
DepositBalanceLow¶
Deposit Balance must be greater than or equal to the withdraw amount
ExcessMaxCoolDownDuration¶
Excess max cool down duration for pool
ExcessMaxLockDuration¶
Excess max lock duration for lock pool
ExcessMaxUserLockItemsCount¶
Excess max user lock item count
NotAValidAmount¶
Not a valid amount
NotAValidDuration¶
Not a valid duration
PoolAlreadyExists¶
Pool associacted with asset already exists
PoolDoesNotExist¶
Pool does not exist
PoolInStatus¶
Pool is already in desire status
PoolIsInTargetCoolDownDuration¶
Pool is in a target cool down duration status
PoolIsNotActive¶
Pool is not active
PoolUnderLock¶
Pool is in lock status, withdraw is not allowed.
RewardNotFinish¶
Last reward is not finish
GeneralCouncil¶
Calls¶
close¶
Close a vote that is either approved, disapproved or whose voting period has ended.
May be called by any signed account in order to finish voting and close the proposal.
If called before the end of the voting period it will only close the vote if it is has enough votes to be approved or disapproved.
If called after the end of the voting period abstentions are counted as rejections unless there is a prime member set and the prime member cast an approval.
If the close operation completes successfully with disapproval, the transaction fee will be waived. Otherwise execution of the approved operation will be charged to the caller.
proposal_weight_bound: The maximum amount of weight consumed by executing the closed proposal.length_bound: The upper bound for the length of the proposal in storage. Checked viastorage::readso it issize_of::<u32>() == 4larger than the pure length.
# <weight>
## Weight
- O(B + M + P1 + P2) where:
- B is proposal size in bytes (length-fee-bounded)
- M is members-count (code- and governance-bounded)
- P1 is the complexity of proposal preimage.
- P2 is proposal-count (code-bounded)
- DB:
- 2 storage reads (Members: codec O(M), Prime: codec O(1))
- 3 mutations (Voting: codec O(M), ProposalOf: codec O(B), Proposals: codec
O(P2))
- any mutations done while executing proposal (P1)
- up to 3 events
# </weight>
Attributes¶
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
| index | ProposalIndex |
| proposal_weight_bound | Weight |
| length_bound | u32 |
Python¶
call = substrate.compose_call(
'GeneralCouncil', 'close', {
'index': 'u32',
'length_bound': 'u32',
'proposal_hash': '[u8; 32]',
'proposal_weight_bound': {
'proof_size': 'u64',
'ref_time': 'u64',
},
}
)
close_old_weight¶
Close a vote that is either approved, disapproved or whose voting period has ended.
May be called by any signed account in order to finish voting and close the proposal.
If called before the end of the voting period it will only close the vote if it is has enough votes to be approved or disapproved.
If called after the end of the voting period abstentions are counted as rejections unless there is a prime member set and the prime member cast an approval.
If the close operation completes successfully with disapproval, the transaction fee will be waived. Otherwise execution of the approved operation will be charged to the caller.
proposal_weight_bound: The maximum amount of weight consumed by executing the closed proposal.length_bound: The upper bound for the length of the proposal in storage. Checked viastorage::readso it issize_of::<u32>() == 4larger than the pure length.
# <weight>
## Weight
- O(B + M + P1 + P2) where:
- B is proposal size in bytes (length-fee-bounded)
- M is members-count (code- and governance-bounded)
- P1 is the complexity of proposal preimage.
- P2 is proposal-count (code-bounded)
- DB:
- 2 storage reads (Members: codec O(M), Prime: codec O(1))
- 3 mutations (Voting: codec O(M), ProposalOf: codec O(B), Proposals: codec
O(P2))
- any mutations done while executing proposal (P1)
- up to 3 events
# </weight>
Attributes¶
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
| index | ProposalIndex |
| proposal_weight_bound | OldWeight |
| length_bound | u32 |
Python¶
call = substrate.compose_call(
'GeneralCouncil', 'close_old_weight', {
'index': 'u32',
'length_bound': 'u32',
'proposal_hash': '[u8; 32]',
'proposal_weight_bound': 'u64',
}
)
disapprove_proposal¶
Disapprove a proposal, close, and remove it from the system, regardless of its current state.
Must be called by the Root origin.
Parameters:
* proposal_hash: The hash of the proposal that should be disapproved.
# <weight> Complexity: O(P) where P is the number of max proposals DB Weight: * Reads: Proposals * Writes: Voting, Proposals, ProposalOf # </weight>
Attributes¶
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
Python¶
call = substrate.compose_call(
'GeneralCouncil', 'disapprove_proposal', {'proposal_hash': '[u8; 32]'}
)
execute¶
Dispatch a proposal from a member using the Member origin.
Origin must be a member of the collective.
# <weight>
## Weight
- O(M + P) where M members-count (code-bounded) and P complexity of dispatching
proposal
- DB: 1 read (codec O(M)) + DB access of proposal
- 1 event
# </weight>
Attributes¶
| Name | Type |
|---|---|
| proposal | Box<<T as Config<I>>::Proposal> |
| length_bound | u32 |
Python¶
call = substrate.compose_call(
'GeneralCouncil', 'execute', {
'length_bound': 'u32',
'proposal': 'Call',
}
)
propose¶
Add a new proposal to either be voted on or executed directly.
Requires the sender to be member.
threshold determines whether proposal is executed directly (threshold < 2)
or put up for voting.
# <weight>
## Weight
- O(B + M + P1) or O(B + M + P2) where:
- B is proposal size in bytes (length-fee-bounded)
- M is members-count (code- and governance-bounded)
- branching is influenced by threshold where:
- P1 is proposal execution complexity (threshold < 2)
- P2 is proposals-count (code-bounded) (threshold >= 2)
- DB:
- 1 storage read is_member (codec O(M))
- 1 storage read ProposalOf::contains_key (codec O(1))
- DB accesses influenced by threshold:
- EITHER storage accesses done by proposal (threshold < 2)
- OR proposal insertion (threshold <= 2)
- 1 storage mutation Proposals (codec O(P2))
- 1 storage mutation ProposalCount (codec O(1))
- 1 storage write ProposalOf (codec O(B))
- 1 storage write Voting (codec O(M))
- 1 event
# </weight>
Attributes¶
| Name | Type |
|---|---|
| threshold | MemberCount |
| proposal | Box<<T as Config<I>>::Proposal> |
| length_bound | u32 |
Python¶
call = substrate.compose_call(
'GeneralCouncil', 'propose', {
'length_bound': 'u32',
'proposal': 'Call',
'threshold': 'u32',
}
)
set_members¶
Set the collective's membership.
new_members: The new member list. Be nice to the chain and provide it sorted.prime: The prime member whose vote sets the default.old_count: The upper bound for the previous number of members in storage. Used for weight estimation.
Requires root origin.
NOTE: Does not enforce the expected MaxMembers limit on the amount of members, but
the weight estimations rely on it to estimate dispatchable weight.
# WARNING:
The pallet-collective can also be managed by logic outside of the pallet through the
implementation of the trait [ChangeMembers].
Any call to set_members must be careful that the member set doesn't get out of sync
with other logic managing the member set.
# <weight>
## Weight
- O(MP + N) where:
- M old-members-count (code- and governance-bounded)
- N new-members-count (code- and governance-bounded)
- P proposals-count (code-bounded)
- DB:
- 1 storage mutation (codec O(M) read, O(N) write) for reading and writing the
members
- 1 storage read (codec O(P)) for reading the proposals
- P storage mutations (codec O(M)) for updating the votes for each proposal
- 1 storage write (codec O(1)) for deleting the old prime and setting the new one
# </weight>
Attributes¶
| Name | Type |
|---|---|
| new_members | Vec<T::AccountId> |
| prime | Option<T::AccountId> |
| old_count | MemberCount |
Python¶
call = substrate.compose_call(
'GeneralCouncil', 'set_members', {
'new_members': ['AccountId'],
'old_count': 'u32',
'prime': (None, 'AccountId'),
}
)
vote¶
Add an aye or nay vote for the sender to the given proposal.
Requires the sender to be a member.
Transaction fees will be waived if the member is voting on any particular proposal
for the first time and the call is successful. Subsequent vote changes will charge a
fee.
# <weight>
## Weight
- O(M) where M is members-count (code- and governance-bounded)
- DB:
- 1 storage read Members (codec O(M))
- 1 storage mutation Voting (codec O(M))
- 1 event
# </weight>
Attributes¶
| Name | Type |
|---|---|
| proposal | T::Hash |
| index | ProposalIndex |
| approve | bool |
Python¶
call = substrate.compose_call(
'GeneralCouncil', 'vote', {
'approve': 'bool',
'index': 'u32',
'proposal': '[u8; 32]',
}
)
Events¶
Approved¶
A motion was approved by the required threshold.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
Closed¶
A proposal was closed because its threshold was reached or after its duration was up.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
| yes | MemberCount |
u32 |
| no | MemberCount |
u32 |
Disapproved¶
A motion was not approved by the required threshold.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
Executed¶
A motion was executed; result will be Ok if it returned without error.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None}} |
MemberExecuted¶
A single member did some action; result will be Ok if it returned without error.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None}} |
Proposed¶
A motion (given hash) has been proposed (by given account) with a threshold (given
MemberCount).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
| proposal_index | ProposalIndex |
u32 |
| proposal_hash | T::Hash |
[u8; 32] |
| threshold | MemberCount |
u32 |
Voted¶
A motion (given hash) has been voted on by given account, leaving
a tally (yes votes and no votes given respectively as MemberCount).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
| proposal_hash | T::Hash |
[u8; 32] |
| voted | bool |
bool |
| yes | MemberCount |
u32 |
| no | MemberCount |
u32 |
Storage functions¶
Members¶
The current members of the collective. This is stored sorted (just by value).
Python¶
result = substrate.query(
'GeneralCouncil', 'Members', []
)
Return value¶
['AccountId']
Prime¶
The prime member that helps determine the default vote behavior in case of absentations.
Python¶
result = substrate.query(
'GeneralCouncil', 'Prime', []
)
Return value¶
'AccountId'
ProposalCount¶
Proposals so far.
Python¶
result = substrate.query(
'GeneralCouncil', 'ProposalCount', []
)
Return value¶
'u32'
ProposalOf¶
Actual proposal for a given hash, if it's current.
Python¶
result = substrate.query(
'GeneralCouncil', 'ProposalOf', ['[u8; 32]']
)
Return value¶
'Call'
Proposals¶
The hashes of the active proposals.
Python¶
result = substrate.query(
'GeneralCouncil', 'Proposals', []
)
Return value¶
['[u8; 32]']
Voting¶
Votes on a given proposal, if it is ongoing.
Python¶
result = substrate.query(
'GeneralCouncil', 'Voting', ['[u8; 32]']
)
Return value¶
{'ayes': ['AccountId'], 'end': 'u32', 'index': 'u32', 'nays': ['AccountId'], 'threshold': 'u32'}
Errors¶
AlreadyInitialized¶
Members are already initialized!
DuplicateProposal¶
Duplicate proposals not allowed
DuplicateVote¶
Duplicate vote ignored
NotMember¶
Account is not a member
ProposalMissing¶
Proposal must exist
TooEarly¶
The close call was made too early, before the end of the voting.
TooManyProposals¶
There can only be a maximum of MaxProposals active proposals.
WrongIndex¶
Mismatched index
WrongProposalLength¶
The given length bound for the proposal was too low.
WrongProposalWeight¶
The given weight bound for the proposal was too low.
GeneralCouncilMembership¶
Calls¶
add_member¶
Add a member who to the set.
May only be called from T::AddOrigin.
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'GeneralCouncilMembership', 'add_member', {
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
change_key¶
Swap out the sending member for some other key new.
May only be called from Signed origin of a current member.
Prime membership is passed from the origin account to new, if extant.
Attributes¶
| Name | Type |
|---|---|
| new | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'GeneralCouncilMembership', 'change_key', {
'new': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
clear_prime¶
Remove the prime member if it exists.
May only be called from T::PrimeOrigin.
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'GeneralCouncilMembership', 'clear_prime', {}
)
remove_member¶
Remove a member who from the set.
May only be called from T::RemoveOrigin.
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'GeneralCouncilMembership', 'remove_member', {
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
reset_members¶
Change the membership to a new set, disregarding the existing membership. Be nice and
pass members pre-sorted.
May only be called from T::ResetOrigin.
Attributes¶
| Name | Type |
|---|---|
| members | Vec<T::AccountId> |
Python¶
call = substrate.compose_call(
'GeneralCouncilMembership', 'reset_members', {'members': ['AccountId']}
)
set_prime¶
Set the prime member. Must be a current member.
May only be called from T::PrimeOrigin.
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'GeneralCouncilMembership', 'set_prime', {
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
swap_member¶
Swap out one member remove for another add.
May only be called from T::SwapOrigin.
Prime membership is not passed from remove to add, if extant.
Attributes¶
| Name | Type |
|---|---|
| remove | AccountIdLookupOf<T> |
| add | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'GeneralCouncilMembership', 'swap_member', {
'add': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'remove': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
Events¶
Dummy¶
Phantom member, never used.
Attributes¶
No attributes
KeyChanged¶
One of the members' keys changed.
Attributes¶
No attributes
MemberAdded¶
The given member was added; see the transaction for who.
Attributes¶
No attributes
MemberRemoved¶
The given member was removed; see the transaction for who.
Attributes¶
No attributes
MembersReset¶
The membership was reset; see the transaction for who the new set is.
Attributes¶
No attributes
MembersSwapped¶
Two members were swapped; see the transaction for who.
Attributes¶
No attributes
Storage functions¶
Members¶
The current membership, stored as an ordered Vec.
Python¶
result = substrate.query(
'GeneralCouncilMembership', 'Members', []
)
Return value¶
['AccountId']
Prime¶
The current prime member, if one exists.
Python¶
result = substrate.query(
'GeneralCouncilMembership', 'Prime', []
)
Return value¶
'AccountId'
Errors¶
AlreadyMember¶
Already a member.
NotMember¶
Not a member.
TooManyMembers¶
Too many members.
Identity¶
Calls¶
add_registrar¶
Add a registrar to the system.
The dispatch origin for this call must be T::RegistrarOrigin.
account: the account of the registrar.
Emits RegistrarAdded if successful.
# <weight>
- O(R) where R registrar-count (governance-bounded and code-bounded).
- One storage mutation (codec O(R)).
- One event.
# </weight>
Attributes¶
| Name | Type |
|---|---|
| account | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Identity', 'add_registrar', {
'account': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
add_sub¶
Add the given account to the sender's subs.
Payment: Balance reserved by a previous set_subs call for one sub will be repatriated
to the sender.
The dispatch origin for this call must be Signed and the sender must have a registered
sub identity of sub.
Attributes¶
| Name | Type |
|---|---|
| sub | AccountIdLookupOf<T> |
| data | Data |
Python¶
call = substrate.compose_call(
'Identity', 'add_sub', {
'data': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'sub': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
cancel_request¶
Cancel a previous request.
Payment: A previously reserved deposit is returned on success.
The dispatch origin for this call must be Signed and the sender must have a registered identity.
reg_index: The index of the registrar whose judgement is no longer requested.
Emits JudgementUnrequested if successful.
# <weight>
- O(R + X).
- One balance-reserve operation.
- One storage mutation O(R + X).
- One event
# </weight>
Attributes¶
| Name | Type |
|---|---|
| reg_index | RegistrarIndex |
Python¶
call = substrate.compose_call(
'Identity', 'cancel_request', {'reg_index': 'u32'}
)
clear_identity¶
Clear an account's identity info and all sub-accounts and return all deposits.
Payment: All reserved balances on the account are returned.
The dispatch origin for this call must be Signed and the sender must have a registered identity.
Emits IdentityCleared if successful.
# <weight>
- O(R + S + X)
- where R registrar-count (governance-bounded).
- where S subs-count (hard- and deposit-bounded).
- where X additional-field-count (deposit-bounded and code-bounded).
- One balance-unreserve operation.
- 2 storage reads and S + 2 storage deletions.
- One event.
# </weight>
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'Identity', 'clear_identity', {}
)
kill_identity¶
Remove an account's identity and sub-account information and slash the deposits.
Payment: Reserved balances from set_subs and set_identity are slashed and handled by
Slash. Verification request deposits are not returned; they should be cancelled
manually using cancel_request.
The dispatch origin for this call must match T::ForceOrigin.
target: the account whose identity the judgement is upon. This must be an account with a registered identity.
Emits IdentityKilled if successful.
# <weight>
- O(R + S + X).
- One balance-reserve operation.
- S + 2 storage mutations.
- One event.
# </weight>
Attributes¶
| Name | Type |
|---|---|
| target | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Identity', 'kill_identity', {
'target': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
provide_judgement¶
Provide a judgement for an account's identity.
The dispatch origin for this call must be Signed and the sender must be the account
of the registrar whose index is reg_index.
reg_index: the index of the registrar whose judgement is being made.target: the account whose identity the judgement is upon. This must be an account with a registered identity.judgement: the judgement of the registrar of indexreg_indexabouttarget.identity: The hash of the [IdentityInfo] for that the judgement is provided.
Emits JudgementGiven if successful.
# <weight>
- O(R + X).
- One balance-transfer operation.
- Up to one account-lookup operation.
- Storage: 1 read O(R), 1 mutate O(R + X).
- One event.
# </weight>
Attributes¶
| Name | Type |
|---|---|
| reg_index | RegistrarIndex |
| target | AccountIdLookupOf<T> |
| judgement | Judgement<BalanceOf<T>> |
| identity | T::Hash |
Python¶
call = substrate.compose_call(
'Identity', 'provide_judgement', {
'identity': '[u8; 32]',
'judgement': {
'Erroneous': None,
'FeePaid': 'u128',
'KnownGood': None,
'LowQuality': None,
'OutOfDate': None,
'Reasonable': None,
'Unknown': None,
},
'reg_index': 'u32',
'target': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
quit_sub¶
Remove the sender as a sub-account.
Payment: Balance reserved by a previous set_subs call for one sub will be repatriated
to the sender (not the original depositor).
The dispatch origin for this call must be Signed and the sender must have a registered super-identity.
NOTE: This should not normally be used, but is provided in the case that the non- controller of an account is maliciously registered as a sub-account.
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'Identity', 'quit_sub', {}
)
remove_sub¶
Remove the given account from the sender's subs.
Payment: Balance reserved by a previous set_subs call for one sub will be repatriated
to the sender.
The dispatch origin for this call must be Signed and the sender must have a registered
sub identity of sub.
Attributes¶
| Name | Type |
|---|---|
| sub | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Identity', 'remove_sub', {
'sub': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
rename_sub¶
Alter the associated name of the given sub-account.
The dispatch origin for this call must be Signed and the sender must have a registered
sub identity of sub.
Attributes¶
| Name | Type |
|---|---|
| sub | AccountIdLookupOf<T> |
| data | Data |
Python¶
call = substrate.compose_call(
'Identity', 'rename_sub', {
'data': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'sub': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
request_judgement¶
Request a judgement from a registrar.
Payment: At most max_fee will be reserved for payment to the registrar if judgement
given.
The dispatch origin for this call must be Signed and the sender must have a registered identity.
reg_index: The index of the registrar whose judgement is requested.max_fee: The maximum fee that may be paid. This should just be auto-populated as:
Self::registrars().get(reg_index).unwrap().fee
Emits JudgementRequested if successful.
# <weight>
- O(R + X).
- One balance-reserve operation.
- Storage: 1 read O(R), 1 mutate O(X + R).
- One event.
# </weight>
Attributes¶
| Name | Type |
|---|---|
| reg_index | RegistrarIndex |
| max_fee | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'Identity', 'request_judgement', {
'max_fee': 'u128',
'reg_index': 'u32',
}
)
set_account_id¶
Change the account associated with a registrar.
The dispatch origin for this call must be Signed and the sender must be the account
of the registrar whose index is index.
index: the index of the registrar whose fee is to be set.new: the new account ID.
# <weight>
- O(R).
- One storage mutation O(R).
- Benchmark: 8.823 + R * 0.32 µs (min squares analysis)
# </weight>
Attributes¶
| Name | Type |
|---|---|
| index | RegistrarIndex |
| new | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Identity', 'set_account_id', {
'index': 'u32',
'new': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
set_fee¶
Set the fee required for a judgement to be requested from a registrar.
The dispatch origin for this call must be Signed and the sender must be the account
of the registrar whose index is index.
index: the index of the registrar whose fee is to be set.fee: the new fee.
# <weight>
- O(R).
- One storage mutation O(R).
- Benchmark: 7.315 + R * 0.329 µs (min squares analysis)
# </weight>
Attributes¶
| Name | Type |
|---|---|
| index | RegistrarIndex |
| fee | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'Identity', 'set_fee', {'fee': 'u128', 'index': 'u32'}
)
set_fields¶
Set the field information for a registrar.
The dispatch origin for this call must be Signed and the sender must be the account
of the registrar whose index is index.
index: the index of the registrar whose fee is to be set.fields: the fields that the registrar concerns themselves with.
# <weight>
- O(R).
- One storage mutation O(R).
- Benchmark: 7.464 + R * 0.325 µs (min squares analysis)
# </weight>
Attributes¶
| Name | Type |
|---|---|
| index | RegistrarIndex |
| fields | IdentityFields |
Python¶
call = substrate.compose_call(
'Identity', 'set_fields', {'fields': 'u64', 'index': 'u32'}
)
set_identity¶
Set an account's identity information and reserve the appropriate deposit.
If the account already has identity information, the deposit is taken as part payment for the new deposit.
The dispatch origin for this call must be Signed.
info: The identity information.
Emits IdentitySet if successful.
# <weight>
- O(X + X&\#x27; + R)
- where X additional-field-count (deposit-bounded and code-bounded)
- where R judgements-count (registrar-count-bounded)
- One balance reserve operation.
- One storage mutation (codec-read O(X&\#x27; + R), codec-write O(X + R)).
- One event.
# </weight>
Attributes¶
| Name | Type |
|---|---|
| info | Box<IdentityInfo<T::MaxAdditionalFields>> |
Python¶
call = substrate.compose_call(
'Identity', 'set_identity', {
'info': {
'additional': [
(
{
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
{
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
),
],
'display': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'email': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'image': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'legal': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'pgp_fingerprint': (
None,
'[u8; 20]',
),
'riot': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'twitter': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'web': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
},
}
)
set_subs¶
Set the sub-accounts of the sender.
Payment: Any aggregate balance reserved by previous set_subs calls will be returned
and an amount SubAccountDeposit will be reserved for each item in subs.
The dispatch origin for this call must be Signed and the sender must have a registered identity.
subs: The identity's (new) sub-accounts.
# <weight>
- O(P + S)
- where P old-subs-count (hard- and deposit-bounded).
- where S subs-count (hard- and deposit-bounded).
- At most one balance operations.
- DB:
- P + S storage mutations (codec complexity O(1))
- One storage read (codec complexity O(P)).
- One storage write (codec complexity O(S)).
- One storage-exists (IdentityOf::contains_key).
# </weight>
Attributes¶
| Name | Type |
|---|---|
| subs | Vec<(T::AccountId, Data)> |
Python¶
call = substrate.compose_call(
'Identity', 'set_subs', {
'subs': [
(
'AccountId',
{
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
),
],
}
)
Events¶
IdentityCleared¶
A name was cleared, and the given balance returned.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| deposit | BalanceOf<T> |
u128 |
IdentityKilled¶
A name was removed and the given balance slashed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| deposit | BalanceOf<T> |
u128 |
IdentitySet¶
A name was set or reset (which will remove all judgements).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
JudgementGiven¶
A judgement was given by a registrar.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| target | T::AccountId |
AccountId |
| registrar_index | RegistrarIndex |
u32 |
JudgementRequested¶
A judgement was asked from a registrar.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| registrar_index | RegistrarIndex |
u32 |
JudgementUnrequested¶
A judgement request was retracted.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| registrar_index | RegistrarIndex |
u32 |
RegistrarAdded¶
A registrar was added.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| registrar_index | RegistrarIndex |
u32 |
SubIdentityAdded¶
A sub-identity was added to an identity and the deposit paid.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| sub | T::AccountId |
AccountId |
| main | T::AccountId |
AccountId |
| deposit | BalanceOf<T> |
u128 |
SubIdentityRemoved¶
A sub-identity was removed from an identity and the deposit freed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| sub | T::AccountId |
AccountId |
| main | T::AccountId |
AccountId |
| deposit | BalanceOf<T> |
u128 |
SubIdentityRevoked¶
A sub-identity was cleared, and the given deposit repatriated from the main identity account to the sub-identity account.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| sub | T::AccountId |
AccountId |
| main | T::AccountId |
AccountId |
| deposit | BalanceOf<T> |
u128 |
Storage functions¶
IdentityOf¶
Information that is pertinent to identify the entity behind an account.
TWOX-NOTE: OK ― AccountId is a secure hash.
Python¶
result = substrate.query(
'Identity', 'IdentityOf', ['AccountId']
)
Return value¶
{
'deposit': 'u128',
'info': {
'additional': [
(
{
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
{
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
),
],
'display': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'email': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'image': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'legal': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'pgp_fingerprint': (None, '[u8; 20]'),
'riot': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'twitter': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'web': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
},
'judgements': [
(
'u32',
{
'Erroneous': None,
'FeePaid': 'u128',
'KnownGood': None,
'LowQuality': None,
'OutOfDate': None,
'Reasonable': None,
'Unknown': None,
},
),
],
}
Registrars¶
The set of registrars. Not expected to get very big as can only be added through a special origin (likely a council motion).
The index into this can be cast to RegistrarIndex to get a valid value.
Python¶
result = substrate.query(
'Identity', 'Registrars', []
)
Return value¶
[(None, {'account': 'AccountId', 'fee': 'u128', 'fields': 'u64'})]
SubsOf¶
Alternative "sub" identities of this account.
The first item is the deposit, the second is a vector of the accounts.
TWOX-NOTE: OK ― AccountId is a secure hash.
Python¶
result = substrate.query(
'Identity', 'SubsOf', ['AccountId']
)
Return value¶
('u128', ['AccountId'])
SuperOf¶
The super-identity of an alternative "sub" identity together with its name, within that
context. If the account is not some other account's sub-identity, then just None.
Python¶
result = substrate.query(
'Identity', 'SuperOf', ['AccountId']
)
Return value¶
(
'AccountId',
{
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
)
Constants¶
BasicDeposit¶
The amount held on deposit for a registered identity
Value¶
15630000000000
Python¶
constant = substrate.get_constant('Identity', 'BasicDeposit')
FieldDeposit¶
The amount held on deposit per additional field for a registered identity.
Value¶
4110000000000
Python¶
constant = substrate.get_constant('Identity', 'FieldDeposit')
MaxAdditionalFields¶
Maximum number of additional fields that may be stored in an ID. Needed to bound the I/O required to access an identity, but can be pretty high.
Value¶
100
Python¶
constant = substrate.get_constant('Identity', 'MaxAdditionalFields')
MaxRegistrars¶
Maxmimum number of registrars allowed in the system. Needed to bound the complexity of, e.g., updating judgements.
Value¶
20
Python¶
constant = substrate.get_constant('Identity', 'MaxRegistrars')
MaxSubAccounts¶
The maximum number of sub-accounts allowed per identified account.
Value¶
100
Python¶
constant = substrate.get_constant('Identity', 'MaxSubAccounts')
SubAccountDeposit¶
The amount held on deposit for a registered subaccount. This should account for the fact that one storage item's value will increase by the size of an account ID, and there will be another trie item whose value is the size of an account ID plus 32 bytes.
Value¶
3330000000000
Python¶
constant = substrate.get_constant('Identity', 'SubAccountDeposit')
Errors¶
AlreadyClaimed¶
Account ID is already named.
EmptyIndex¶
Empty index.
FeeChanged¶
Fee is changed.
InvalidIndex¶
The index is invalid.
InvalidJudgement¶
Invalid judgement.
InvalidTarget¶
The target is invalid.
JudgementForDifferentIdentity¶
The provided judgement was for a different identity.
JudgementGiven¶
Judgement given.
NoIdentity¶
No identity found.
NotFound¶
Account isn't found.
NotNamed¶
Account isn't named.
NotOwned¶
Sub-account isn't owned by sender.
NotSub¶
Sender is not a sub-account.
StickyJudgement¶
Sticky judgement.
TooManyFields¶
Too many additional fields.
TooManyRegistrars¶
Maximum amount of registrars reached. Cannot add any more.
TooManySubAccounts¶
Too many subs-accounts.
LiquidStaking¶
Calls¶
bond¶
Bond on relaychain via xcm.transact
Attributes¶
| Name | Type |
|---|---|
| derivative_index | DerivativeIndex |
| amount | BalanceOf<T> |
| payee | RewardDestination<T::AccountId> |
Python¶
call = substrate.compose_call(
'LiquidStaking', 'bond', {
'amount': 'u128',
'derivative_index': 'u16',
'payee': {
'Account': 'AccountId',
'Controller': None,
'None': None,
'Staked': None,
'Stash': None,
},
}
)
bond_extra¶
Bond_extra on relaychain via xcm.transact
Attributes¶
| Name | Type |
|---|---|
| derivative_index | DerivativeIndex |
| amount | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'LiquidStaking', 'bond_extra', {
'amount': 'u128',
'derivative_index': 'u16',
}
)
cancel_unstake¶
Cancel unstake
Attributes¶
| Name | Type |
|---|---|
| amount | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'LiquidStaking', 'cancel_unstake', {'amount': 'u128'}
)
claim_for¶
Claim assets back when current era index arrived at target era
Attributes¶
| Name | Type |
|---|---|
| dest | <T::Lookup as StaticLookup>::Source |
Python¶
call = substrate.compose_call(
'LiquidStaking', 'claim_for', {
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
fast_match_unstake¶
Fast match unstake through matching pool
Attributes¶
| Name | Type |
|---|---|
| unstaker_list | Vec<T::AccountId> |
Python¶
call = substrate.compose_call(
'LiquidStaking', 'fast_match_unstake', {'unstaker_list': ['AccountId']}
)
force_advance_era¶
Force advance era
Attributes¶
| Name | Type |
|---|---|
| offset | EraIndex |
Python¶
call = substrate.compose_call(
'LiquidStaking', 'force_advance_era', {'offset': 'u32'}
)
force_matching¶
Force matching
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'LiquidStaking', 'force_matching', {}
)
force_set_current_era¶
Force set current era
Attributes¶
| Name | Type |
|---|---|
| era | EraIndex |
Python¶
call = substrate.compose_call(
'LiquidStaking', 'force_set_current_era', {'era': 'u32'}
)
force_set_era_start_block¶
Force set era start block
Attributes¶
| Name | Type |
|---|---|
| block_number | BlockNumberFor<T> |
Python¶
call = substrate.compose_call(
'LiquidStaking', 'force_set_era_start_block', {'block_number': 'u32'}
)
force_set_staking_ledger¶
Force set staking_ledger
Attributes¶
| Name | Type |
|---|---|
| derivative_index | DerivativeIndex |
| staking_ledger | StakingLedger<T::AccountId, BalanceOf<T>> |
Python¶
call = substrate.compose_call(
'LiquidStaking', 'force_set_staking_ledger', {
'derivative_index': 'u16',
'staking_ledger': {
'active': 'u128',
'claimed_rewards': ['u32'],
'stash': 'AccountId',
'total': 'u128',
'unlocking': [
{
'era': 'u32',
'value': 'u128',
},
],
},
}
)
nominate¶
Nominate on relaychain via xcm.transact
Attributes¶
| Name | Type |
|---|---|
| derivative_index | DerivativeIndex |
| targets | Vec<T::AccountId> |
Python¶
call = substrate.compose_call(
'LiquidStaking', 'nominate', {
'derivative_index': 'u16',
'targets': ['AccountId'],
}
)
notification_received¶
Internal call which is expected to be triggered only by xcm instruction
Attributes¶
| Name | Type |
|---|---|
| query_id | QueryId |
| response | Response |
Python¶
call = substrate.compose_call(
'LiquidStaking', 'notification_received', {
'query_id': 'u64',
'response': {
'Assets': [
{
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': 'scale_info::62',
'parents': 'u8',
},
},
},
],
'ExecutionResult': (
None,
(
'u32',
{
'AssetNotFound': None,
'BadOrigin': None,
'Barrier': None,
'DestinationUnsupported': None,
'ExceedsMaxMessageSize': None,
'FailedToDecode': None,
'FailedToTransactAsset': None,
'InvalidLocation': None,
'LocationCannotHold': None,
'MaxWeightInvalid': None,
'MultiLocationFull': None,
'MultiLocationNotInvertible': None,
'NotHoldingFees': None,
'NotWithdrawable': None,
'Overflow': None,
'TooExpensive': None,
'Transport': None,
'Trap': 'u64',
'UnhandledXcmVersion': None,
'Unimplemented': None,
'UnknownClaim': None,
'Unroutable': None,
'UntrustedReserveLocation': None,
'UntrustedTeleportLocation': None,
'WeightLimitReached': 'u64',
'WeightNotComputable': None,
},
),
),
'Null': None,
'Version': 'u32',
},
}
)
rebond¶
Rebond on relaychain via xcm.transact
Attributes¶
| Name | Type |
|---|---|
| derivative_index | DerivativeIndex |
| amount | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'LiquidStaking', 'rebond', {
'amount': 'u128',
'derivative_index': 'u16',
}
)
reduce_reserves¶
Reduces reserves by transferring to receiver.
Attributes¶
| Name | Type |
|---|---|
| receiver | <T::Lookup as StaticLookup>::Source |
| reduce_amount | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'LiquidStaking', 'reduce_reserves', {
'receiver': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'reduce_amount': 'u128',
}
)
set_current_era¶
Set current era by providing storage proof
Attributes¶
| Name | Type |
|---|---|
| era | EraIndex |
| proof | Vec<Vec<u8>> |
Python¶
call = substrate.compose_call(
'LiquidStaking', 'set_current_era', {'era': 'u32', 'proof': ['Bytes']}
)
set_staking_ledger¶
Set staking_ledger by providing storage proof
Attributes¶
| Name | Type |
|---|---|
| derivative_index | DerivativeIndex |
| staking_ledger | StakingLedger<T::AccountId, BalanceOf<T>> |
| proof | Vec<Vec<u8>> |
Python¶
call = substrate.compose_call(
'LiquidStaking', 'set_staking_ledger', {
'derivative_index': 'u16',
'proof': ['Bytes'],
'staking_ledger': {
'active': 'u128',
'claimed_rewards': ['u32'],
'stash': 'AccountId',
'total': 'u128',
'unlocking': [
{
'era': 'u32',
'value': 'u128',
},
],
},
}
)
stake¶
Put assets under staking, the native assets will be transferred to the account owned by the pallet, user receive derivative in return, such derivative can be further used as collateral for lending.
amount: the amount of staking assets
Attributes¶
| Name | Type |
|---|---|
| amount | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'LiquidStaking', 'stake', {'amount': 'u128'}
)
unbond¶
Unbond on relaychain via xcm.transact
Attributes¶
| Name | Type |
|---|---|
| derivative_index | DerivativeIndex |
| amount | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'LiquidStaking', 'unbond', {
'amount': 'u128',
'derivative_index': 'u16',
}
)
unstake¶
Unstake by exchange derivative for assets, the assets will not be available immediately.
Instead, the request is recorded and pending for the nomination accounts on relaychain
chain to do the unbond operation.
amount: the amount of derivative
Attributes¶
| Name | Type |
|---|---|
| liquid_amount | BalanceOf<T> |
| unstake_provider | UnstakeProvider |
Python¶
call = substrate.compose_call(
'LiquidStaking', 'unstake', {
'liquid_amount': 'u128',
'unstake_provider': (
'RelayChain',
'Loans',
'MatchingPool',
),
}
)
update_commission_rate¶
Update commission rate
Attributes¶
| Name | Type |
|---|---|
| commission_rate | Rate |
Python¶
call = substrate.compose_call(
'LiquidStaking', 'update_commission_rate', {'commission_rate': 'u128'}
)
update_reserve_factor¶
Update insurance pool's reserve_factor
Attributes¶
| Name | Type |
|---|---|
| reserve_factor | Ratio |
Python¶
call = substrate.compose_call(
'LiquidStaking', 'update_reserve_factor', {'reserve_factor': 'u32'}
)
update_staking_ledger_cap¶
Update ledger's max bonded cap
Attributes¶
| Name | Type |
|---|---|
| cap | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'LiquidStaking', 'update_staking_ledger_cap', {'cap': 'u128'}
)
withdraw_unbonded¶
Withdraw unbonded on relaychain via xcm.transact
Attributes¶
| Name | Type |
|---|---|
| derivative_index | DerivativeIndex |
| num_slashing_spans | u32 |
Python¶
call = substrate.compose_call(
'LiquidStaking', 'withdraw_unbonded', {
'derivative_index': 'u16',
'num_slashing_spans': 'u32',
}
)
Events¶
Bonding¶
Sent staking.bond call to relaychain
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | DerivativeIndex |
u16 |
| None | T::AccountId |
AccountId |
| None | BalanceOf<T> |
u128 |
| None | RewardDestination<T::AccountId> |
{'Staked': None, 'Stash': None, 'Controller': None, 'Account': 'AccountId', 'None': None} |
BondingExtra¶
Sent staking.bond_extra call to relaychain
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | DerivativeIndex |
u16 |
| None | BalanceOf<T> |
u128 |
ClaimedFor¶
Claim user's unbonded staking assets [account_id, amount]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | BalanceOf<T> |
u128 |
CommissionRateUpdated¶
Commission rate was updated
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | Rate |
u128 |
ExchangeRateUpdated¶
Exchange rate was updated
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | Rate |
u128 |
FastUnstakeMatched¶
Fast Unstake Matched [unstaker, received_staking_amount, matched_liquid_amount, fee_in_liquid_currency]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | BalanceOf<T> |
u128 |
| None | BalanceOf<T> |
u128 |
| None | BalanceOf<T> |
u128 |
Matching¶
Matching stakes & unstakes for optimizing operations to be done on relay chain [bond_amount, rebond_amount, unbond_amount]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | BalanceOf<T> |
u128 |
| None | BalanceOf<T> |
u128 |
| None | BalanceOf<T> |
u128 |
NewEra¶
New era [era_index]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | EraIndex |
u32 |
Nominating¶
Sent staking.nominate call to relaychain
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | DerivativeIndex |
u16 |
| None | Vec<T::AccountId> |
['AccountId'] |
NotificationReceived¶
Notification received [multi_location, query_id, res]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | Box<MultiLocation> |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}})}} |
| None | QueryId |
u64 |
| None | Option<(u32, XcmError)> |
(None, ('u32', {'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None})) |
Rebonding¶
Sent staking.rebond call to relaychain
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | DerivativeIndex |
u16 |
| None | BalanceOf<T> |
u128 |
ReserveFactorUpdated¶
Reserve_factor was updated
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | Ratio |
u32 |
ReservesReduced¶
Event emitted when the reserves are reduced [receiver, reduced_amount]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | BalanceOf<T> |
u128 |
Staked¶
The assets get staked successfully
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | BalanceOf<T> |
u128 |
StakingLedgerCapUpdated¶
Staking ledger's cap was updated
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | BalanceOf<T> |
u128 |
StakingLedgerUpdated¶
Staking ledger updated
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | DerivativeIndex |
u16 |
| None | StakingLedger<T::AccountId, BalanceOf<T>> |
{'stash': 'AccountId', 'total': 'u128', 'active': 'u128', 'unlocking': [{'value': 'u128', 'era': 'u32'}], 'claimed_rewards': ['u32']} |
Unbonding¶
Sent staking.unbond call to relaychain
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | DerivativeIndex |
u16 |
| None | BalanceOf<T> |
u128 |
UnstakeCancelled¶
Unstake cancelled [account_id, amount, liquid_amount]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | BalanceOf<T> |
u128 |
| None | BalanceOf<T> |
u128 |
Unstaked¶
The derivative get unstaked successfully
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | BalanceOf<T> |
u128 |
| None | BalanceOf<T> |
u128 |
WithdrawingUnbonded¶
Sent staking.withdraw_unbonded call to relaychain
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | DerivativeIndex |
u16 |
| None | u32 |
u32 |
Storage functions¶
CommissionRate¶
The commission rate charge for staking total rewards.
Python¶
result = substrate.query(
'LiquidStaking', 'CommissionRate', []
)
Return value¶
'u128'
CurrentEra¶
Current era index
Users can come to claim their unbonded staking assets back once this value arrived
at certain height decided by BondingDuration and EraLength
Python¶
result = substrate.query(
'LiquidStaking', 'CurrentEra', []
)
Return value¶
'u32'
EraStartBlock¶
Current era's start relaychain block
Python¶
result = substrate.query(
'LiquidStaking', 'EraStartBlock', []
)
Return value¶
'u32'
ExchangeRate¶
The exchange rate between relaychain native asset and the voucher.
Python¶
result = substrate.query(
'LiquidStaking', 'ExchangeRate', []
)
Return value¶
'u128'
FastUnstakeRequests¶
Users' fast unstake requests in liquid currency
Python¶
result = substrate.query(
'LiquidStaking', 'FastUnstakeRequests', ['AccountId']
)
Return value¶
'u128'
IsMatched¶
Set to true if already do matching in current era clear after arriving at next era
Python¶
result = substrate.query(
'LiquidStaking', 'IsMatched', []
)
Return value¶
'bool'
IsUpdated¶
Set to true if staking ledger has been modified in this block
Python¶
result = substrate.query(
'LiquidStaking', 'IsUpdated', ['u16']
)
Return value¶
'bool'
MatchingPool¶
Store total stake amount and unstake amount in each era, And will update when stake/unstake occurred.
Python¶
result = substrate.query(
'LiquidStaking', 'MatchingPool', []
)
Return value¶
{
'total_stake_amount': {'reserved': 'u128', 'total': 'u128'},
'total_unstake_amount': {'reserved': 'u128', 'total': 'u128'},
}
ReserveFactor¶
Fraction of reward currently set aside for reserves.
Python¶
result = substrate.query(
'LiquidStaking', 'ReserveFactor', []
)
Return value¶
'u32'
StakingLedgerCap¶
Staking ledger's cap
Python¶
result = substrate.query(
'LiquidStaking', 'StakingLedgerCap', []
)
Return value¶
'u128'
StakingLedgers¶
Platform's staking ledgers
Python¶
result = substrate.query(
'LiquidStaking', 'StakingLedgers', ['u16']
)
Return value¶
{
'active': 'u128',
'claimed_rewards': ['u32'],
'stash': 'AccountId',
'total': 'u128',
'unlocking': [{'era': 'u32', 'value': 'u128'}],
}
StorageVersion¶
Storage version of the pallet.
Python¶
result = substrate.query(
'LiquidStaking', 'StorageVersion', []
)
Return value¶
('V1', 'V2', 'V3')
TotalReserves¶
Python¶
result = substrate.query(
'LiquidStaking', 'TotalReserves', []
)
Return value¶
'u128'
Unlockings¶
Unbonding requests to be handled after arriving at target era
Python¶
result = substrate.query(
'LiquidStaking', 'Unlockings', ['AccountId']
)
Return value¶
[{'era': 'u32', 'value': 'u128'}]
ValidationData¶
ValidationData of previous block
This is needed since validation data from cumulus_pallet_parachain_system will be updated in set_validation_data Inherent which happens before external extrinsics
Python¶
result = substrate.query(
'LiquidStaking', 'ValidationData', []
)
Return value¶
{
'max_pov_size': 'u32',
'parent_head': 'Bytes',
'relay_parent_number': 'u32',
'relay_parent_storage_root': '[u8; 32]',
}
XcmRequests¶
Flying & failed xcm requests
Python¶
result = substrate.query(
'LiquidStaking', 'XcmRequests', ['u64']
)
Return value¶
{
'Bond': {'amount': 'u128', 'index': 'u16'},
'BondExtra': {'amount': 'u128', 'index': 'u16'},
'Nominate': {'index': 'u16', 'targets': ['AccountId']},
'Rebond': {'amount': 'u128', 'index': 'u16'},
'Unbond': {'amount': 'u128', 'index': 'u16'},
'WithdrawUnbonded': {'index': 'u16', 'num_slashing_spans': 'u32'},
}
Constants¶
BondingDuration¶
Number of unbond indexes for unlocking.
Value¶
28
Python¶
constant = substrate.get_constant('LiquidStaking', 'BondingDuration')
CollateralCurrency¶
Collateral currency
Value¶
4294957296
Python¶
constant = substrate.get_constant('LiquidStaking', 'CollateralCurrency')
DerivativeIndexList¶
Derivative index list
Value¶
[0, 1, 2, 3, 4, 5]
Python¶
constant = substrate.get_constant('LiquidStaking', 'DerivativeIndexList')
ElectionSolutionStoredOffset¶
Number of blocknumbers that do_matching after each era updated. Need to do_bond before relaychain store npos solution
Value¶
12600
Python¶
constant = substrate.get_constant('LiquidStaking', 'ElectionSolutionStoredOffset')
EraLength¶
Number of blocknumbers that each period contains. SessionsPerEra * EpochDuration / MILLISECS_PER_BLOCK
Value¶
14400
Python¶
constant = substrate.get_constant('LiquidStaking', 'EraLength')
LiquidCurrency¶
Liquid currency
Value¶
1001
Python¶
constant = substrate.get_constant('LiquidStaking', 'LiquidCurrency')
LoansInstantUnstakeFee¶
Loans instant unstake fee
Value¶
38000000000000000
Python¶
constant = substrate.get_constant('LiquidStaking', 'LoansInstantUnstakeFee')
LoansPalletId¶
The pallet id of loans used for fast unstake
Value¶
'0x7061722f6c6f616e'
Python¶
constant = substrate.get_constant('LiquidStaking', 'LoansPalletId')
MatchingPoolFastUnstakeFee¶
MatchingPool fast unstake fee
Value¶
10000000000000000
Python¶
constant = substrate.get_constant('LiquidStaking', 'MatchingPoolFastUnstakeFee')
MinNominatorBond¶
The minimum active bond to become and maintain the role of a nominator.
Value¶
100000000000
Python¶
constant = substrate.get_constant('LiquidStaking', 'MinNominatorBond')
MinStake¶
Minimum stake amount
Value¶
10000000000
Python¶
constant = substrate.get_constant('LiquidStaking', 'MinStake')
MinUnstake¶
Minimum unstake amount
Value¶
5000000000
Python¶
constant = substrate.get_constant('LiquidStaking', 'MinUnstake')
NumSlashingSpans¶
Value¶
0
Python¶
constant = substrate.get_constant('LiquidStaking', 'NumSlashingSpans')
PalletId¶
The pallet id of liquid staking, keeps all the staking assets
Value¶
'0x7061722f6c71736b'
Python¶
constant = substrate.get_constant('LiquidStaking', 'PalletId')
ProtocolFeeReceiver¶
Who/where to send the protocol fees
Value¶
'p8DR3iQJe3tN8RXizq3TnH3LfHCU7e7PNQ9zTwfAj7RFzExL9'
Python¶
constant = substrate.get_constant('LiquidStaking', 'ProtocolFeeReceiver')
SelfParaId¶
Returns the parachain ID we are running with.
Value¶
2012
Python¶
constant = substrate.get_constant('LiquidStaking', 'SelfParaId')
StakingCurrency¶
Staking currency
Value¶
101
Python¶
constant = substrate.get_constant('LiquidStaking', 'StakingCurrency')
XcmFees¶
Xcm fees
Value¶
500000000
Python¶
constant = substrate.get_constant('LiquidStaking', 'XcmFees')
Errors¶
AlreadyBonded¶
Stash is already bonded.
CapExceeded¶
Exceeded liquid currency's market cap
InsufficientBond¶
Cannot have a nominator role with value less than the minimum defined by
MinNominatorBond
InvalidCap¶
Invalid market cap
InvalidCommissionRate¶
Invalid commission rate
InvalidDerivativeIndex¶
Invalid derivative index
InvalidExchangeRate¶
Exchange rate is invalid.
InvalidFactor¶
The factor should be bigger than 0% and smaller than 100%
InvalidLiquidCurrency¶
Invalid liquid currency
InvalidProof¶
The merkle proof is invalid
InvalidStakingCurrency¶
Invalid staking currency
InvalidStakingLedger¶
Invalid staking ledger
NoMoreChunks¶
Can not schedule more unlock chunks.
NoUnlockings¶
No unlocking items
NotBonded¶
Stash wasn't bonded yet
NotWithdrawn¶
Not withdrawn unbonded yet
NothingToClaim¶
Nothing to claim yet
StakeTooSmall¶
The stake was below the minimum, MinStake.
StakingLedgerLocked¶
Staking ledger is locked due to mutation in notification_received
UnstakeTooSmall¶
The unstake was below the minimum, MinUnstake.
LiquidStakingAgentsMembership¶
Calls¶
add_member¶
Add a member who to the set.
May only be called from T::AddOrigin.
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'LiquidStakingAgentsMembership', 'add_member', {
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
change_key¶
Swap out the sending member for some other key new.
May only be called from Signed origin of a current member.
Prime membership is passed from the origin account to new, if extant.
Attributes¶
| Name | Type |
|---|---|
| new | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'LiquidStakingAgentsMembership', 'change_key', {
'new': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
clear_prime¶
Remove the prime member if it exists.
May only be called from T::PrimeOrigin.
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'LiquidStakingAgentsMembership', 'clear_prime', {}
)
remove_member¶
Remove a member who from the set.
May only be called from T::RemoveOrigin.
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'LiquidStakingAgentsMembership', 'remove_member', {
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
reset_members¶
Change the membership to a new set, disregarding the existing membership. Be nice and
pass members pre-sorted.
May only be called from T::ResetOrigin.
Attributes¶
| Name | Type |
|---|---|
| members | Vec<T::AccountId> |
Python¶
call = substrate.compose_call(
'LiquidStakingAgentsMembership', 'reset_members', {'members': ['AccountId']}
)
set_prime¶
Set the prime member. Must be a current member.
May only be called from T::PrimeOrigin.
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'LiquidStakingAgentsMembership', 'set_prime', {
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
swap_member¶
Swap out one member remove for another add.
May only be called from T::SwapOrigin.
Prime membership is not passed from remove to add, if extant.
Attributes¶
| Name | Type |
|---|---|
| remove | AccountIdLookupOf<T> |
| add | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'LiquidStakingAgentsMembership', 'swap_member', {
'add': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'remove': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
Events¶
Dummy¶
Phantom member, never used.
Attributes¶
No attributes
KeyChanged¶
One of the members' keys changed.
Attributes¶
No attributes
MemberAdded¶
The given member was added; see the transaction for who.
Attributes¶
No attributes
MemberRemoved¶
The given member was removed; see the transaction for who.
Attributes¶
No attributes
MembersReset¶
The membership was reset; see the transaction for who the new set is.
Attributes¶
No attributes
MembersSwapped¶
Two members were swapped; see the transaction for who.
Attributes¶
No attributes
Storage functions¶
Members¶
The current membership, stored as an ordered Vec.
Python¶
result = substrate.query(
'LiquidStakingAgentsMembership', 'Members', []
)
Return value¶
['AccountId']
Prime¶
The current prime member, if one exists.
Python¶
result = substrate.query(
'LiquidStakingAgentsMembership', 'Prime', []
)
Return value¶
'AccountId'
Errors¶
AlreadyMember¶
Already a member.
NotMember¶
Not a member.
TooManyMembers¶
Too many members.
Loans¶
Calls¶
activate_market¶
Activates a market. Returns Err if the market currency does not exist.
If the market is already activated, does nothing.
asset_id: Market related currency
Attributes¶
| Name | Type |
|---|---|
| asset_id | AssetIdOf<T> |
Python¶
call = substrate.compose_call(
'Loans', 'activate_market', {'asset_id': 'u32'}
)
add_market¶
Stores a new market and its related currency. Returns Err if a currency
is not attached to an existent market.
All provided market states must be Pending, otherwise an error will be returned.
If a currency is already attached to a market, then the market will be replaced by the new provided value.
The ptoken id and asset id are bound, the ptoken id of new provided market cannot
be duplicated with the existing one, otherwise it will return InvalidPtokenId.
asset_id: Market related currencymarket: The market that is going to be stored
Attributes¶
| Name | Type |
|---|---|
| asset_id | AssetIdOf<T> |
| market | Market<BalanceOf<T>> |
Python¶
call = substrate.compose_call(
'Loans', 'add_market', {
'asset_id': 'u32',
'market': {
'borrow_cap': 'u128',
'close_factor': 'u32',
'collateral_factor': 'u32',
'liquidate_incentive': 'u128',
'liquidate_incentive_reserved_factor': 'u32',
'liquidation_threshold': 'u32',
'ptoken_id': 'u32',
'rate_model': {
'Curve': {
'base_rate': 'u128',
},
'Jump': {
'base_rate': 'u128',
'full_rate': 'u128',
'jump_rate': 'u128',
'jump_utilization': 'u32',
},
},
'reserve_factor': 'u32',
'state': (
'Active',
'Pending',
'Supervision',
),
'supply_cap': 'u128',
},
}
)
add_reserves¶
Add reserves by transferring from payer.
May only be called from T::ReserveOrigin.
payer: the payer account.asset_id: the assets to be added.add_amount: the amount to be added.
Attributes¶
| Name | Type |
|---|---|
| payer | <T::Lookup as StaticLookup>::Source |
| asset_id | AssetIdOf<T> |
| add_amount | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'Loans', 'add_reserves', {
'add_amount': 'u128',
'asset_id': 'u32',
'payer': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
add_reward¶
Add reward for the pallet account.
amount: Reward amount added
Attributes¶
| Name | Type |
|---|---|
| amount | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'Loans', 'add_reward', {'amount': 'u128'}
)
borrow¶
Sender borrows assets from the protocol to their own address.
asset_id: the asset to be borrowed.borrow_amount: the amount to be borrowed.
Attributes¶
| Name | Type |
|---|---|
| asset_id | AssetIdOf<T> |
| borrow_amount | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'Loans', 'borrow', {
'asset_id': 'u32',
'borrow_amount': 'u128',
}
)
claim_reward¶
Claim reward from all market.
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'Loans', 'claim_reward', {}
)
claim_reward_for_market¶
Claim reward from the specified market.
asset_id: Market related currency
Attributes¶
| Name | Type |
|---|---|
| asset_id | AssetIdOf<T> |
Python¶
call = substrate.compose_call(
'Loans', 'claim_reward_for_market', {'asset_id': 'u32'}
)
collateral_asset¶
Set the collateral asset.
asset_id: the asset to be set.enable: turn on/off the collateral option.
Attributes¶
| Name | Type |
|---|---|
| asset_id | AssetIdOf<T> |
| enable | bool |
Python¶
call = substrate.compose_call(
'Loans', 'collateral_asset', {'asset_id': 'u32', 'enable': 'bool'}
)
force_update_market¶
Force updates a stored market. Returns Err if the market currency
does not exist.
asset_id: market related currencymarket: the new market parameters
Attributes¶
| Name | Type |
|---|---|
| asset_id | AssetIdOf<T> |
| market | Market<BalanceOf<T>> |
Python¶
call = substrate.compose_call(
'Loans', 'force_update_market', {
'asset_id': 'u32',
'market': {
'borrow_cap': 'u128',
'close_factor': 'u32',
'collateral_factor': 'u32',
'liquidate_incentive': 'u128',
'liquidate_incentive_reserved_factor': 'u32',
'liquidation_threshold': 'u32',
'ptoken_id': 'u32',
'rate_model': {
'Curve': {
'base_rate': 'u128',
},
'Jump': {
'base_rate': 'u128',
'full_rate': 'u128',
'jump_rate': 'u128',
'jump_utilization': 'u32',
},
},
'reserve_factor': 'u32',
'state': (
'Active',
'Pending',
'Supervision',
),
'supply_cap': 'u128',
},
}
)
liquidate_borrow¶
The sender liquidates the borrower's collateral.
borrower: the borrower to be liquidated.liquidation_asset_id: the assert to be liquidated.repay_amount: the amount to be repaid borrow.collateral_asset_id: The collateral to seize from the borrower.
Attributes¶
| Name | Type |
|---|---|
| borrower | T::AccountId |
| liquidation_asset_id | AssetIdOf<T> |
| repay_amount | BalanceOf<T> |
| collateral_asset_id | AssetIdOf<T> |
Python¶
call = substrate.compose_call(
'Loans', 'liquidate_borrow', {
'borrower': 'AccountId',
'collateral_asset_id': 'u32',
'liquidation_asset_id': 'u32',
'repay_amount': 'u128',
}
)
mint¶
Sender supplies assets into the market and receives internal supplies in exchange.
asset_id: the asset to be deposited.mint_amount: the amount to be deposited.
Attributes¶
| Name | Type |
|---|---|
| asset_id | AssetIdOf<T> |
| mint_amount | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'Loans', 'mint', {
'asset_id': 'u32',
'mint_amount': 'u128',
}
)
redeem¶
Sender redeems some of internal supplies in exchange for the underlying asset.
asset_id: the asset to be redeemed.redeem_amount: the amount to be redeemed.
Attributes¶
| Name | Type |
|---|---|
| asset_id | AssetIdOf<T> |
| redeem_amount | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'Loans', 'redeem', {
'asset_id': 'u32',
'redeem_amount': 'u128',
}
)
redeem_all¶
Sender redeems all of internal supplies in exchange for the underlying asset.
asset_id: the asset to be redeemed.
Attributes¶
| Name | Type |
|---|---|
| asset_id | AssetIdOf<T> |
Python¶
call = substrate.compose_call(
'Loans', 'redeem_all', {'asset_id': 'u32'}
)
reduce_incentive_reserves¶
Sender redeems some of internal supplies in exchange for the underlying asset.
asset_id: the asset to be redeemed.redeem_amount: the amount to be redeemed.
Attributes¶
| Name | Type |
|---|---|
| receiver | <T::Lookup as StaticLookup>::Source |
| asset_id | AssetIdOf<T> |
| redeem_amount | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'Loans', 'reduce_incentive_reserves', {
'asset_id': 'u32',
'receiver': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'redeem_amount': 'u128',
}
)
reduce_reserves¶
Reduces reserves by transferring to receiver.
May only be called from T::ReserveOrigin.
receiver: the receiver account.asset_id: the assets to be reduced.reduce_amount: the amount to be reduced.
Attributes¶
| Name | Type |
|---|---|
| receiver | <T::Lookup as StaticLookup>::Source |
| asset_id | AssetIdOf<T> |
| reduce_amount | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'Loans', 'reduce_reserves', {
'asset_id': 'u32',
'receiver': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'reduce_amount': 'u128',
}
)
repay_borrow¶
Sender repays some of their debts.
asset_id: the asset to be repaid.repay_amount: the amount to be repaid.
Attributes¶
| Name | Type |
|---|---|
| asset_id | AssetIdOf<T> |
| repay_amount | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'Loans', 'repay_borrow', {
'asset_id': 'u32',
'repay_amount': 'u128',
}
)
repay_borrow_all¶
Sender repays all of their debts.
asset_id: the asset to be repaid.
Attributes¶
| Name | Type |
|---|---|
| asset_id | AssetIdOf<T> |
Python¶
call = substrate.compose_call(
'Loans', 'repay_borrow_all', {'asset_id': 'u32'}
)
update_liquidation_free_collateral¶
Update liquidation free collateral.
The assets won't be counted when do general
Attributes¶
| Name | Type |
|---|---|
| collaterals | Vec<AssetIdOf<T>> |
Python¶
call = substrate.compose_call(
'Loans', 'update_liquidation_free_collateral', {'collaterals': ['u32']}
)
update_market¶
Updates a stored market. Returns Err if the market currency does not exist.
asset_id: market related currencycollateral_factor: the collateral utilization ratioreserve_factor: fraction of interest currently set aside for reservesclose_factor: maximum liquidation ratio at one timeliquidate_incentive: liquidation incentive ratiocap: market capacity
Attributes¶
| Name | Type |
|---|---|
| asset_id | AssetIdOf<T> |
| collateral_factor | Option<Ratio> |
| liquidation_threshold | Option<Ratio> |
| reserve_factor | Option<Ratio> |
| close_factor | Option<Ratio> |
| liquidate_incentive_reserved_factor | Option<Ratio> |
| liquidate_incentive | Option<Rate> |
| supply_cap | Option<BalanceOf<T>> |
| borrow_cap | Option<BalanceOf<T>> |
Python¶
call = substrate.compose_call(
'Loans', 'update_market', {
'asset_id': 'u32',
'borrow_cap': (None, 'u128'),
'close_factor': (None, 'u32'),
'collateral_factor': (None, 'u32'),
'liquidate_incentive': (
None,
'u128',
),
'liquidate_incentive_reserved_factor': (
None,
'u32',
),
'liquidation_threshold': (
None,
'u32',
),
'reserve_factor': (None, 'u32'),
'supply_cap': (None, 'u128'),
}
)
update_market_reward_speed¶
Updates reward speed for the specified market
The origin must conform to UpdateOrigin.
asset_id: Market related currencyreward_per_block: reward amount per block.
Attributes¶
| Name | Type |
|---|---|
| asset_id | AssetIdOf<T> |
| supply_reward_per_block | Option<BalanceOf<T>> |
| borrow_reward_per_block | Option<BalanceOf<T>> |
Python¶
call = substrate.compose_call(
'Loans', 'update_market_reward_speed', {
'asset_id': 'u32',
'borrow_reward_per_block': (
None,
'u128',
),
'supply_reward_per_block': (
None,
'u128',
),
}
)
update_rate_model¶
Updates the rate model of a stored market. Returns Err if the market
currency does not exist or the rate model is invalid.
asset_id: Market related currencyrate_model: The new rate model to be updated
Attributes¶
| Name | Type |
|---|---|
| asset_id | AssetIdOf<T> |
| rate_model | InterestRateModel |
Python¶
call = substrate.compose_call(
'Loans', 'update_rate_model', {
'asset_id': 'u32',
'rate_model': {
'Curve': {'base_rate': 'u128'},
'Jump': {
'base_rate': 'u128',
'full_rate': 'u128',
'jump_rate': 'u128',
'jump_utilization': 'u32',
},
},
}
)
withdraw_missing_reward¶
Withdraw reward token from pallet account.
The origin must conform to UpdateOrigin.
target_account: account receive reward token.amount: Withdraw amount
Attributes¶
| Name | Type |
|---|---|
| target_account | <T::Lookup as StaticLookup>::Source |
| amount | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'Loans', 'withdraw_missing_reward', {
'amount': 'u128',
'target_account': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
Events¶
ActivatedMarket¶
Event emitted when a market is activated [admin, asset_id]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | AssetIdOf<T> |
u32 |
Borrowed¶
Event emitted when cash is borrowed [sender, asset_id, amount]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | AssetIdOf<T> |
u32 |
| None | BalanceOf<T> |
u128 |
CollateralAssetAdded¶
Enable collateral for certain asset [sender, asset_id]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | AssetIdOf<T> |
u32 |
CollateralAssetRemoved¶
Disable collateral for certain asset [sender, asset_id]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | AssetIdOf<T> |
u32 |
Deposited¶
Event emitted when assets are deposited [sender, asset_id, amount]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | AssetIdOf<T> |
u32 |
| None | BalanceOf<T> |
u128 |
DistributedBorrowerReward¶
Deposited when Reward is distributed to a borrower
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | AssetIdOf<T> |
u32 |
| None | T::AccountId |
AccountId |
| None | BalanceOf<T> |
u128 |
| None | BalanceOf<T> |
u128 |
DistributedSupplierReward¶
Deposited when Reward is distributed to a supplier
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | AssetIdOf<T> |
u32 |
| None | T::AccountId |
AccountId |
| None | BalanceOf<T> |
u128 |
| None | BalanceOf<T> |
u128 |
IncentiveReservesReduced¶
Event emitted when the incentive reserves are redeemed and transfer to receiver's account [receive_account_id, asset_id, reduced_amount]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | AssetIdOf<T> |
u32 |
| None | BalanceOf<T> |
u128 |
LiquidatedBorrow¶
Event emitted when a borrow is liquidated [liquidator, borrower, liquidation_asset_id, collateral_asset_id, repay_amount, collateral_amount]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | T::AccountId |
AccountId |
| None | AssetIdOf<T> |
u32 |
| None | AssetIdOf<T> |
u32 |
| None | BalanceOf<T> |
u128 |
| None | BalanceOf<T> |
u128 |
LiquidationFreeCollateralsUpdated¶
Liquidation free collaterals has been updated
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | Vec<AssetIdOf<T>> |
['u32'] |
MarketRewardSpeedUpdated¶
Event emitted when market reward speed updated.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | AssetIdOf<T> |
u32 |
| None | BalanceOf<T> |
u128 |
| None | BalanceOf<T> |
u128 |
NewMarket¶
New market is set [new_interest_rate_model]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | AssetIdOf<T> |
u32 |
| None | Market<BalanceOf<T>> |
{'collateral_factor': 'u32', 'liquidation_threshold': 'u32', 'reserve_factor': 'u32', 'close_factor': 'u32', 'liquidate_incentive': 'u128', 'liquidate_incentive_reserved_factor': 'u32', 'rate_model': {'Jump': {'base_rate': 'u128', 'jump_rate': 'u128', 'full_rate': 'u128', 'jump_utilization': 'u32'}, 'Curve': {'base_rate': 'u128'}}, 'state': ('Active', 'Pending', 'Supervision'), 'supply_cap': 'u128', 'borrow_cap': 'u128', 'ptoken_id': 'u32'} |
Redeemed¶
Event emitted when assets are redeemed [sender, asset_id, amount]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | AssetIdOf<T> |
u32 |
| None | BalanceOf<T> |
u128 |
RepaidBorrow¶
Event emitted when a borrow is repaid [sender, asset_id, amount]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | AssetIdOf<T> |
u32 |
| None | BalanceOf<T> |
u128 |
ReservesAdded¶
Event emitted when the reserves are added [admin, asset_id, added_amount, total_reserves]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | AssetIdOf<T> |
u32 |
| None | BalanceOf<T> |
u128 |
| None | BalanceOf<T> |
u128 |
ReservesReduced¶
Event emitted when the reserves are reduced [admin, asset_id, reduced_amount, total_reserves]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | AssetIdOf<T> |
u32 |
| None | BalanceOf<T> |
u128 |
| None | BalanceOf<T> |
u128 |
RewardAdded¶
Reward added
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | BalanceOf<T> |
u128 |
RewardPaid¶
Reward Paid for user
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | BalanceOf<T> |
u128 |
RewardWithdrawn¶
Reward withdrawed
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | BalanceOf<T> |
u128 |
UpdatedMarket¶
New market parameters is updated [admin, asset_id]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | AssetIdOf<T> |
u32 |
| None | Market<BalanceOf<T>> |
{'collateral_factor': 'u32', 'liquidation_threshold': 'u32', 'reserve_factor': 'u32', 'close_factor': 'u32', 'liquidate_incentive': 'u128', 'liquidate_incentive_reserved_factor': 'u32', 'rate_model': {'Jump': {'base_rate': 'u128', 'jump_rate': 'u128', 'full_rate': 'u128', 'jump_utilization': 'u32'}, 'Curve': {'base_rate': 'u128'}}, 'state': ('Active', 'Pending', 'Supervision'), 'supply_cap': 'u128', 'borrow_cap': 'u128', 'ptoken_id': 'u32'} |
Storage functions¶
AccountBorrows¶
Mapping of account addresses to outstanding borrow balances CurrencyId -> Owner -> BorrowSnapshot
Python¶
result = substrate.query(
'Loans', 'AccountBorrows', ['u32', 'AccountId']
)
Return value¶
{'borrow_index': 'u128', 'principal': 'u128'}
AccountDeposits¶
Mapping of account addresses to deposit details CollateralType -> Owner -> Deposits
Python¶
result = substrate.query(
'Loans', 'AccountDeposits', ['u32', 'AccountId']
)
Return value¶
{'is_collateral': 'bool', 'voucher_balance': 'u128'}
AccountEarned¶
Mapping of account addresses to total deposit interest accrual CurrencyId -> Owner -> EarnedSnapshot
Python¶
result = substrate.query(
'Loans', 'AccountEarned', ['u32', 'AccountId']
)
Return value¶
{'exchange_rate_prior': 'u128', 'total_earned_prior': 'u128'}
BorrowIndex¶
Accumulator of the total earned interest rate since the opening of the market CurrencyId -> u128
Python¶
result = substrate.query(
'Loans', 'BorrowIndex', ['u32']
)
Return value¶
'u128'
BorrowRate¶
Mapping of borrow rate to currency type
Python¶
result = substrate.query(
'Loans', 'BorrowRate', ['u32']
)
Return value¶
'u128'
ExchangeRate¶
The exchange rate from the underlying to the internal collateral
Python¶
result = substrate.query(
'Loans', 'ExchangeRate', ['u32']
)
Return value¶
'u128'
LastAccruedInterestTime¶
The timestamp of the last calculation of accrued interest
Python¶
result = substrate.query(
'Loans', 'LastAccruedInterestTime', ['u32']
)
Return value¶
'u64'
LiquidationFreeCollaterals¶
Liquidation free collateral.
Python¶
result = substrate.query(
'Loans', 'LiquidationFreeCollaterals', []
)
Return value¶
['u32']
Markets¶
Mapping of asset id to its market
Python¶
result = substrate.query(
'Loans', 'Markets', ['u32']
)
Return value¶
{
'borrow_cap': 'u128',
'close_factor': 'u32',
'collateral_factor': 'u32',
'liquidate_incentive': 'u128',
'liquidate_incentive_reserved_factor': 'u32',
'liquidation_threshold': 'u32',
'ptoken_id': 'u32',
'rate_model': {
'Curve': {'base_rate': 'u128'},
'Jump': {
'base_rate': 'u128',
'full_rate': 'u128',
'jump_rate': 'u128',
'jump_utilization': 'u32',
},
},
'reserve_factor': 'u32',
'state': ('Active', 'Pending', 'Supervision'),
'supply_cap': 'u128',
}
RewardAccured¶
The reward accrued but not yet transferred to each user.
Python¶
result = substrate.query(
'Loans', 'RewardAccured', ['AccountId']
)
Return value¶
'u128'
RewardBorrowSpeed¶
Mapping of token id to borrow reward speed
Python¶
result = substrate.query(
'Loans', 'RewardBorrowSpeed', ['u32']
)
Return value¶
'u128'
RewardBorrowState¶
The Reward market borrow state for each market
Python¶
result = substrate.query(
'Loans', 'RewardBorrowState', ['u32']
)
Return value¶
{'block': 'u32', 'index': 'u128'}
RewardBorrowerIndex¶
The Reward index for each market for each borrower as of the last time they accrued Reward
Python¶
result = substrate.query(
'Loans', 'RewardBorrowerIndex', ['u32', 'AccountId']
)
Return value¶
'u128'
RewardSupplierIndex¶
The Reward index for each market for each supplier as of the last time they accrued Reward
Python¶
result = substrate.query(
'Loans', 'RewardSupplierIndex', ['u32', 'AccountId']
)
Return value¶
'u128'
RewardSupplySpeed¶
Mapping of token id to supply reward speed
Python¶
result = substrate.query(
'Loans', 'RewardSupplySpeed', ['u32']
)
Return value¶
'u128'
RewardSupplyState¶
The Reward market supply state for each market
Python¶
result = substrate.query(
'Loans', 'RewardSupplyState', ['u32']
)
Return value¶
{'block': 'u32', 'index': 'u128'}
StorageVersion¶
Storage version of the pallet.
Python¶
result = substrate.query(
'Loans', 'StorageVersion', []
)
Return value¶
('V1', 'V2', 'V3', 'V4', 'V5', 'V6')
SupplyRate¶
Mapping of supply rate to currency type
Python¶
result = substrate.query(
'Loans', 'SupplyRate', ['u32']
)
Return value¶
'u128'
TotalBorrows¶
Total amount of outstanding borrows of the underlying in this market CurrencyId -> Balance
Python¶
result = substrate.query(
'Loans', 'TotalBorrows', ['u32']
)
Return value¶
'u128'
TotalReserves¶
Total amount of reserves of the underlying held in this market CurrencyId -> Balance
Python¶
result = substrate.query(
'Loans', 'TotalReserves', ['u32']
)
Return value¶
'u128'
TotalSupply¶
Total number of collateral tokens in circulation CollateralType -> Balance
Python¶
result = substrate.query(
'Loans', 'TotalSupply', ['u32']
)
Return value¶
'u128'
UnderlyingAssetId¶
Mapping of ptoken id to asset id
ptoken id: voucher token id
asset id: underlying token id
Python¶
result = substrate.query(
'Loans', 'UnderlyingAssetId', ['u32']
)
Return value¶
'u32'
UtilizationRatio¶
Borrow utilization ratio
Python¶
result = substrate.query(
'Loans', 'UtilizationRatio', ['u32']
)
Return value¶
'u32'
Constants¶
LiquidationFreeAssetId¶
Value¶
101
Python¶
constant = substrate.get_constant('Loans', 'LiquidationFreeAssetId')
PalletId¶
The loan's module id, keep all collaterals of CDPs.
Value¶
'0x7061722f6c6f616e'
Python¶
constant = substrate.get_constant('Loans', 'PalletId')
RewardAssetId¶
Reward asset id.
Value¶
1
Python¶
constant = substrate.get_constant('Loans', 'RewardAssetId')
Errors¶
BorrowCapacityExceeded¶
Upper bound of borrowing is exceeded
CodecError¶
Codec error
CollateralReserved¶
Collateral is reserved and cannot be liquidated
DepositsAreNotCollateral¶
Deposits are not used as a collateral
DuplicateOperation¶
Asset already enabled/disabled collateral
InsufficientCash¶
Insufficient cash in the pool
InsufficientCollateral¶
Repay amount more than collateral amount
InsufficientDeposit¶
Insufficient deposit to redeem
InsufficientLiquidity¶
Insufficient liquidity to borrow more or disable collateral
InsufficientReserves¶
Insufficient reserves
InsufficientShortfall¶
Insufficient shortfall to repay
InvalidAmount¶
Amount cannot be zero
InvalidCurrencyId¶
Invalid asset id
InvalidExchangeRate¶
The exchange rate should be greater than 0.02 and less than 1
InvalidFactor¶
The factor should be greater than 0% and less than 100%
InvalidPtokenId¶
Invalid ptoken id
InvalidRateModelParam¶
Invalid rate model params
InvalidSupplyCap¶
The supply cap cannot be zero
LiquidatorIsBorrower¶
Liquidator is same as borrower
MarketAlreadyExists¶
Market already exists
MarketDoesNotExist¶
Market does not exist
MarketNotActivated¶
Market not activated
NewMarketMustHavePendingState¶
New markets must have a pending state
NoDeposit¶
No deposit asset
PayerIsSigner¶
Payer cannot be signer
PriceIsZero¶
Oracle price is zero
PriceOracleNotReady¶
Oracle price not ready
SupplyCapacityExceeded¶
Upper bound of supplying is exceeded
TooMuchRepay¶
Repay amount greater than allowed
Multisig¶
Calls¶
approve_as_multi¶
Register approval for a dispatch to be made from a deterministic composite account if
approved by a total of threshold - 1 of other_signatories.
Payment: DepositBase will be reserved if this is the first approval, plus
threshold times DepositFactor. It is returned once this dispatch happens or
is cancelled.
The dispatch origin for this call must be Signed.
threshold: The total number of approvals for this dispatch before it is executed.other_signatories: The accounts (other than the sender) who can approve this dispatch. May not be empty.maybe_timepoint: If this is the first approval, then this must beNone. If it is not the first approval, then it must beSome, with the timepoint (block number and transaction index) of the first approval transaction.call_hash: The hash of the call to be executed.
NOTE: If this is the final approval, you will want to use as_multi instead.
# <weight>
- O(S).
- Up to one balance-reserve or unreserve operation.
- One passthrough operation, one insert, both O(S) where S is the number of
signatories. S is capped by MaxSignatories, with weight being proportional.
- One encode & hash, both of complexity O(S).
- Up to one binary search and insert (O(logS + S)).
- I/O: 1 read O(S), up to 1 mutate O(S). Up to one remove.
- One event.
- Storage: inserts one item, value size bounded by MaxSignatories, with a deposit
taken for its lifetime of DepositBase + threshold * DepositFactor.
- DB Weight:
- Read: Multisig Storage, [Caller Account]
- Write: Multisig Storage, [Caller Account] # </weight>
Attributes¶
| Name | Type |
|---|---|
| threshold | u16 |
| other_signatories | Vec<T::AccountId> |
| maybe_timepoint | Option<Timepoint<T::BlockNumber>> |
| call_hash | [u8; 32] |
| max_weight | Weight |
Python¶
call = substrate.compose_call(
'Multisig', 'approve_as_multi', {
'call_hash': '[u8; 32]',
'max_weight': {
'proof_size': 'u64',
'ref_time': 'u64',
},
'maybe_timepoint': (
None,
{
'height': 'u32',
'index': 'u32',
},
),
'other_signatories': ['AccountId'],
'threshold': 'u16',
}
)
as_multi¶
Register approval for a dispatch to be made from a deterministic composite account if
approved by a total of threshold - 1 of other_signatories.
If there are enough, then dispatch the call.
Payment: DepositBase will be reserved if this is the first approval, plus
threshold times DepositFactor. It is returned once this dispatch happens or
is cancelled.
The dispatch origin for this call must be Signed.
threshold: The total number of approvals for this dispatch before it is executed.other_signatories: The accounts (other than the sender) who can approve this dispatch. May not be empty.maybe_timepoint: If this is the first approval, then this must beNone. If it is not the first approval, then it must beSome, with the timepoint (block number and transaction index) of the first approval transaction.call: The call to be executed.
NOTE: Unless this is the final approval, you will generally want to use
approve_as_multi instead, since it only requires a hash of the call.
Result is equivalent to the dispatched result if threshold is exactly 1. Otherwise
on success, result is Ok and the result from the interior call, if it was executed,
may be found in the deposited MultisigExecuted event.
# <weight>
- O(S + Z + Call).
- Up to one balance-reserve or unreserve operation.
- One passthrough operation, one insert, both O(S) where S is the number of
signatories. S is capped by MaxSignatories, with weight being proportional.
- One call encode & hash, both of complexity O(Z) where Z is tx-len.
- One encode & hash, both of complexity O(S).
- Up to one binary search and insert (O(logS + S)).
- I/O: 1 read O(S), up to 1 mutate O(S). Up to one remove.
- One event.
- The weight of the call.
- Storage: inserts one item, value size bounded by MaxSignatories, with a deposit
taken for its lifetime of DepositBase + threshold * DepositFactor.
- DB Weight:
- Reads: Multisig Storage, [Caller Account]
- Writes: Multisig Storage, [Caller Account]
- Plus Call Weight # </weight>
Attributes¶
| Name | Type |
|---|---|
| threshold | u16 |
| other_signatories | Vec<T::AccountId> |
| maybe_timepoint | Option<Timepoint<T::BlockNumber>> |
| call | Box<<T as Config>::RuntimeCall> |
| max_weight | Weight |
Python¶
call = substrate.compose_call(
'Multisig', 'as_multi', {
'call': 'Call',
'max_weight': {
'proof_size': 'u64',
'ref_time': 'u64',
},
'maybe_timepoint': (
None,
{
'height': 'u32',
'index': 'u32',
},
),
'other_signatories': ['AccountId'],
'threshold': 'u16',
}
)
as_multi_threshold_1¶
Immediately dispatch a multi-signature call using a single approval from the caller.
The dispatch origin for this call must be Signed.
other_signatories: The accounts (other than the sender) who are part of the multi-signature, but do not participate in the approval process.call: The call to be executed.
Result is equivalent to the dispatched result.
# <weight> O(Z + C) where Z is the length of the call and C its execution weight.
- DB Weight: None
- Plus Call Weight # </weight>
Attributes¶
| Name | Type |
|---|---|
| other_signatories | Vec<T::AccountId> |
| call | Box<<T as Config>::RuntimeCall> |
Python¶
call = substrate.compose_call(
'Multisig', 'as_multi_threshold_1', {
'call': 'Call',
'other_signatories': ['AccountId'],
}
)
cancel_as_multi¶
Cancel a pre-existing, on-going multisig transaction. Any deposit reserved previously for this operation will be unreserved on success.
The dispatch origin for this call must be Signed.
threshold: The total number of approvals for this dispatch before it is executed.other_signatories: The accounts (other than the sender) who can approve this dispatch. May not be empty.timepoint: The timepoint (block number and transaction index) of the first approval transaction for this dispatch.call_hash: The hash of the call to be executed.
# <weight>
- O(S).
- Up to one balance-reserve or unreserve operation.
- One passthrough operation, one insert, both O(S) where S is the number of
signatories. S is capped by MaxSignatories, with weight being proportional.
- One encode & hash, both of complexity O(S).
- One event.
- I/O: 1 read O(S), one remove.
- Storage: removes one item.
- DB Weight:
- Read: Multisig Storage, [Caller Account], Refund Account
- Write: Multisig Storage, [Caller Account], Refund Account # </weight>
Attributes¶
| Name | Type |
|---|---|
| threshold | u16 |
| other_signatories | Vec<T::AccountId> |
| timepoint | Timepoint<T::BlockNumber> |
| call_hash | [u8; 32] |
Python¶
call = substrate.compose_call(
'Multisig', 'cancel_as_multi', {
'call_hash': '[u8; 32]',
'other_signatories': ['AccountId'],
'threshold': 'u16',
'timepoint': {
'height': 'u32',
'index': 'u32',
},
}
)
Events¶
MultisigApproval¶
A multisig operation has been approved by someone.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| approving | T::AccountId |
AccountId |
| timepoint | Timepoint<T::BlockNumber> |
{'height': 'u32', 'index': 'u32'} |
| multisig | T::AccountId |
AccountId |
| call_hash | CallHash |
[u8; 32] |
MultisigCancelled¶
A multisig operation has been cancelled.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| cancelling | T::AccountId |
AccountId |
| timepoint | Timepoint<T::BlockNumber> |
{'height': 'u32', 'index': 'u32'} |
| multisig | T::AccountId |
AccountId |
| call_hash | CallHash |
[u8; 32] |
MultisigExecuted¶
A multisig operation has been executed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| approving | T::AccountId |
AccountId |
| timepoint | Timepoint<T::BlockNumber> |
{'height': 'u32', 'index': 'u32'} |
| multisig | T::AccountId |
AccountId |
| call_hash | CallHash |
[u8; 32] |
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None}} |
NewMultisig¶
A new multisig operation has begun.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| approving | T::AccountId |
AccountId |
| multisig | T::AccountId |
AccountId |
| call_hash | CallHash |
[u8; 32] |
Storage functions¶
Multisigs¶
The set of open multisig operations.
Python¶
result = substrate.query(
'Multisig', 'Multisigs', ['AccountId', '[u8; 32]']
)
Return value¶
{
'approvals': ['AccountId'],
'deposit': 'u128',
'depositor': 'AccountId',
'when': {'height': 'u32', 'index': 'u32'},
}
Constants¶
DepositBase¶
The base amount of currency needed to reserve for creating a multisig execution or to store a dispatch call for later.
This is held for an additional storage item whose value size is
4 + sizeof((BlockNumber, Balance, AccountId)) bytes and whose key size is
32 + sizeof(AccountId) bytes.
Value¶
5430000000000
Python¶
constant = substrate.get_constant('Multisig', 'DepositBase')
DepositFactor¶
The amount of currency needed per unit threshold when creating a multisig execution.
This is held for adding 32 bytes more into a pre-existing storage value.
Value¶
1920000000000
Python¶
constant = substrate.get_constant('Multisig', 'DepositFactor')
MaxSignatories¶
The maximum amount of signatories allowed in the multisig.
Value¶
100
Python¶
constant = substrate.get_constant('Multisig', 'MaxSignatories')
Errors¶
AlreadyApproved¶
Call is already approved by this signatory.
AlreadyStored¶
The data to be stored is already stored.
MaxWeightTooLow¶
The maximum weight information provided was too low.
MinimumThreshold¶
Threshold must be 2 or greater.
NoApprovalsNeeded¶
Call doesn't need any (more) approvals.
NoTimepoint¶
No timepoint was given, yet the multisig operation is already underway.
NotFound¶
Multisig operation not found when attempting to cancel.
NotOwner¶
Only the account that originally created the multisig is able to cancel it.
SenderInSignatories¶
The sender was contained in the other signatories; it shouldn't be.
SignatoriesOutOfOrder¶
The signatories were provided out of order; they should be ordered.
TooFewSignatories¶
There are too few signatories in the list.
TooManySignatories¶
There are too many signatories in the list.
UnexpectedTimepoint¶
A timepoint was given, yet no multisig operation is underway.
WrongTimepoint¶
A different timepoint was given to the multisig operation that is underway.
Oracle¶
Calls¶
feed_values¶
Feed the external value.
Require authorized operator.
Attributes¶
| Name | Type |
|---|---|
| values | Vec<(T::OracleKey, T::OracleValue)> |
Python¶
call = substrate.compose_call(
'Oracle', 'feed_values', {'values': [('u32', 'u128')]}
)
Events¶
NewFeedData¶
New feed data is submitted.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| sender | T::AccountId |
AccountId |
| values | Vec<(T::OracleKey, T::OracleValue)> |
[('u32', 'u128')] |
Storage functions¶
HasDispatched¶
If an oracle operator has fed a value in this block
Python¶
result = substrate.query(
'Oracle', 'HasDispatched', []
)
Return value¶
['AccountId']
RawValues¶
Raw values for each oracle operators
Python¶
result = substrate.query(
'Oracle', 'RawValues', ['AccountId', 'u32']
)
Return value¶
{'timestamp': 'u64', 'value': 'u128'}
Values¶
Up to date combined value from Raw Values
Python¶
result = substrate.query(
'Oracle', 'Values', ['u32']
)
Return value¶
{'timestamp': 'u64', 'value': 'u128'}
Constants¶
MaxHasDispatchedSize¶
Maximum size of HasDispatched
Value¶
100
Python¶
constant = substrate.get_constant('Oracle', 'MaxHasDispatchedSize')
RootOperatorAccountId¶
The root operator account id, record all sudo feeds on this account.
Value¶
'p8AxskWHQBViXqKEeX2nUCLmxNrzQrDLd75fcJzDbGTTVUbBz'
Python¶
constant = substrate.get_constant('Oracle', 'RootOperatorAccountId')
Errors¶
AlreadyFeeded¶
Feeder has already feeded at this block
NoPermission¶
Sender does not have permission
OracleMembership¶
Calls¶
add_member¶
Add a member who to the set.
May only be called from T::AddOrigin.
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'OracleMembership', 'add_member', {
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
change_key¶
Swap out the sending member for some other key new.
May only be called from Signed origin of a current member.
Prime membership is passed from the origin account to new, if extant.
Attributes¶
| Name | Type |
|---|---|
| new | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'OracleMembership', 'change_key', {
'new': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
clear_prime¶
Remove the prime member if it exists.
May only be called from T::PrimeOrigin.
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'OracleMembership', 'clear_prime', {}
)
remove_member¶
Remove a member who from the set.
May only be called from T::RemoveOrigin.
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'OracleMembership', 'remove_member', {
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
reset_members¶
Change the membership to a new set, disregarding the existing membership. Be nice and
pass members pre-sorted.
May only be called from T::ResetOrigin.
Attributes¶
| Name | Type |
|---|---|
| members | Vec<T::AccountId> |
Python¶
call = substrate.compose_call(
'OracleMembership', 'reset_members', {'members': ['AccountId']}
)
set_prime¶
Set the prime member. Must be a current member.
May only be called from T::PrimeOrigin.
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'OracleMembership', 'set_prime', {
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
swap_member¶
Swap out one member remove for another add.
May only be called from T::SwapOrigin.
Prime membership is not passed from remove to add, if extant.
Attributes¶
| Name | Type |
|---|---|
| remove | AccountIdLookupOf<T> |
| add | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'OracleMembership', 'swap_member', {
'add': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'remove': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
Events¶
Dummy¶
Phantom member, never used.
Attributes¶
No attributes
KeyChanged¶
One of the members' keys changed.
Attributes¶
No attributes
MemberAdded¶
The given member was added; see the transaction for who.
Attributes¶
No attributes
MemberRemoved¶
The given member was removed; see the transaction for who.
Attributes¶
No attributes
MembersReset¶
The membership was reset; see the transaction for who the new set is.
Attributes¶
No attributes
MembersSwapped¶
Two members were swapped; see the transaction for who.
Attributes¶
No attributes
Storage functions¶
Members¶
The current membership, stored as an ordered Vec.
Python¶
result = substrate.query(
'OracleMembership', 'Members', []
)
Return value¶
['AccountId']
Prime¶
The current prime member, if one exists.
Python¶
result = substrate.query(
'OracleMembership', 'Prime', []
)
Return value¶
'AccountId'
Errors¶
AlreadyMember¶
Already a member.
NotMember¶
Not a member.
TooManyMembers¶
Too many members.
OrmlXcm¶
Calls¶
send_as_sovereign¶
Send an XCM message as parachain sovereign.
Attributes¶
| Name | Type |
|---|---|
| dest | Box<VersionedMultiLocation> |
| message | Box<VersionedXcm<()>> |
Python¶
call = substrate.compose_call(
'OrmlXcm', 'send_as_sovereign', {
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
},
'parents': 'u8',
},
},
'message': {
'V0': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
{
'AbstractFungible': 'InnerStruct',
'AbstractNonFungible': 'InnerStruct',
'All': None,
'AllAbstractFungible': 'InnerStruct',
'AllAbstractNonFungible': 'InnerStruct',
'AllConcreteFungible': 'InnerStruct',
'AllConcreteNonFungible': 'InnerStruct',
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': 'InnerStruct',
'ConcreteNonFungible': 'InnerStruct',
'None': None,
},
],
},
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::94',
],
},
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': 'InnerStruct',
'HrmpChannelClosing': 'InnerStruct',
'HrmpNewChannelOpenRequest': 'InnerStruct',
'QueryResponse': 'InnerStruct',
'RelayedFrom': 'InnerStruct',
'ReserveAssetDeposit': 'InnerStruct',
'TeleportAsset': 'InnerStruct',
'Transact': 'InnerStruct',
'TransferAsset': 'InnerStruct',
'TransferReserveAsset': 'InnerStruct',
'WithdrawAsset': 'InnerStruct',
},
'who': {
'Null': None,
'X1': 'scale_info::96',
'X2': (
'scale_info::96',
'scale_info::96',
),
'X3': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
},
'ReserveAssetDeposit': {
'assets': [
'scale_info::94',
],
'effects': [
'scale_info::242',
],
},
'TeleportAsset': {
'assets': [
'scale_info::94',
],
'effects': [
'scale_info::242',
],
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::94',
],
'dest': {
'Null': None,
'X1': 'scale_info::96',
'X2': (
'scale_info::96',
'scale_info::96',
),
'X3': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::94',
],
'dest': {
'Null': None,
'X1': 'scale_info::96',
'X2': (
'scale_info::96',
'scale_info::96',
),
'X3': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
'effects': [
'scale_info::242',
],
},
'WithdrawAsset': {
'assets': [
'scale_info::94',
],
'effects': [
'scale_info::242',
],
},
},
'who': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'ReserveAssetDeposit': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::79',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::95',
},
'AllConcreteNonFungible': {
'class': 'scale_info::95',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::95',
},
'ConcreteNonFungible': {
'class': 'scale_info::95',
'instance': 'scale_info::79',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::94',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::240',
],
},
'DepositAsset': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
},
'DepositReserveAsset': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'effects': [
'scale_info::242',
],
},
'ExchangeAsset': {
'give': [
'scale_info::94',
],
'receive': [
'scale_info::94',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::94',
],
'effects': [
'scale_info::242',
],
'reserve': 'scale_info::95',
},
'InitiateTeleport': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'effects': [
'scale_info::242',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'query_id': 'u64',
},
},
],
},
'TeleportAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::79',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::95',
},
'AllConcreteNonFungible': {
'class': 'scale_info::95',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::95',
},
'ConcreteNonFungible': {
'class': 'scale_info::95',
'instance': 'scale_info::79',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::94',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::240',
],
},
'DepositAsset': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
},
'DepositReserveAsset': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'effects': [
'scale_info::242',
],
},
'ExchangeAsset': {
'give': [
'scale_info::94',
],
'receive': [
'scale_info::94',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::94',
],
'effects': [
'scale_info::242',
],
'reserve': 'scale_info::95',
},
'InitiateTeleport': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'effects': [
'scale_info::242',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'query_id': 'u64',
},
},
],
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::79',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::95',
},
'AllConcreteNonFungible': {
'class': 'scale_info::95',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::95',
},
'ConcreteNonFungible': {
'class': 'scale_info::95',
'instance': 'scale_info::79',
},
'None': None,
},
],
'dest': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'TransferReserveAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::79',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::95',
},
'AllConcreteNonFungible': {
'class': 'scale_info::95',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::95',
},
'ConcreteNonFungible': {
'class': 'scale_info::95',
'instance': 'scale_info::79',
},
'None': None,
},
],
'dest': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::94',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::240',
],
},
'DepositAsset': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
},
'DepositReserveAsset': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'effects': [
'scale_info::242',
],
},
'ExchangeAsset': {
'give': [
'scale_info::94',
],
'receive': [
'scale_info::94',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::94',
],
'effects': [
'scale_info::242',
],
'reserve': 'scale_info::95',
},
'InitiateTeleport': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'effects': [
'scale_info::242',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'query_id': 'u64',
},
},
],
},
'WithdrawAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::79',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::95',
},
'AllConcreteNonFungible': {
'class': 'scale_info::95',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::95',
},
'ConcreteNonFungible': {
'class': 'scale_info::95',
'instance': 'scale_info::79',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::94',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::240',
],
},
'DepositAsset': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
},
'DepositReserveAsset': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'effects': [
'scale_info::242',
],
},
'ExchangeAsset': {
'give': [
'scale_info::94',
],
'receive': [
'scale_info::94',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::94',
],
'effects': [
'scale_info::242',
],
'reserve': 'scale_info::95',
},
'InitiateTeleport': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'effects': [
'scale_info::242',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'query_id': 'u64',
},
},
],
},
},
'V1': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::76',
],
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': {
'assets': [
{
'fun': 'scale_info::78',
'id': 'scale_info::77',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::76',
'halt_on_error': 'bool',
'instructions': [
'scale_info::245',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::87',
'beneficiary': 'scale_info::61',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'effects': [
'scale_info::247',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::87',
'receive': [
'scale_info::76',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::87',
'effects': [
'scale_info::247',
],
'reserve': 'scale_info::61',
},
'InitiateTeleport': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'effects': [
'scale_info::247',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'query_id': 'u64',
},
},
],
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::76',
],
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': {
'assets': [
'scale_info::76',
],
'effects': [
'scale_info::247',
],
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': 'InnerStruct',
'HrmpChannelClosing': 'InnerStruct',
'HrmpNewChannelOpenRequest': 'InnerStruct',
'QueryResponse': 'InnerStruct',
'ReceiveTeleportedAsset': 'InnerStruct',
'RelayedFrom': 'InnerStruct',
'ReserveAssetDeposited': 'InnerStruct',
'SubscribeVersion': 'InnerStruct',
'Transact': 'InnerStruct',
'TransferAsset': 'InnerStruct',
'TransferReserveAsset': 'InnerStruct',
'UnsubscribeVersion': None,
'WithdrawAsset': 'InnerStruct',
},
'who': {
'Here': None,
'X1': 'scale_info::63',
'X2': (
'scale_info::63',
'scale_info::63',
),
'X3': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X4': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X5': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X6': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X7': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X8': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
},
},
'ReserveAssetDeposited': {
'assets': [
'scale_info::76',
],
'effects': [
'scale_info::247',
],
},
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::76',
],
'beneficiary': {
'interior': 'scale_info::62',
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::76',
],
'dest': {
'interior': 'scale_info::62',
'parents': 'u8',
},
'effects': [
'scale_info::247',
],
},
'UnsubscribeVersion': None,
'WithdrawAsset': {
'assets': [
'scale_info::76',
],
'effects': [
'scale_info::247',
],
},
},
'who': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
},
},
'ReserveAssetDeposited': {
'assets': [
{
'fun': 'scale_info::78',
'id': 'scale_info::77',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::76',
'halt_on_error': 'bool',
'instructions': [
'scale_info::245',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::87',
'beneficiary': 'scale_info::61',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'effects': [
'scale_info::247',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::87',
'receive': [
'scale_info::76',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::87',
'effects': [
'scale_info::247',
],
'reserve': 'scale_info::61',
},
'InitiateTeleport': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'effects': [
'scale_info::247',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'query_id': 'u64',
},
},
],
},
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
{
'fun': 'scale_info::78',
'id': 'scale_info::77',
},
],
'beneficiary': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::63',
'scale_info::63',
),
'X3': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X4': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X5': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X6': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X7': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X8': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
},
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
{
'fun': 'scale_info::78',
'id': 'scale_info::77',
},
],
'dest': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::63',
'scale_info::63',
),
'X3': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X4': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X5': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X6': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X7': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X8': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
},
'parents': 'u8',
},
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::76',
'halt_on_error': 'bool',
'instructions': [
'scale_info::245',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::87',
'beneficiary': 'scale_info::61',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'effects': [
'scale_info::247',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::87',
'receive': [
'scale_info::76',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::87',
'effects': [
'scale_info::247',
],
'reserve': 'scale_info::61',
},
'InitiateTeleport': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'effects': [
'scale_info::247',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'query_id': 'u64',
},
},
],
},
'UnsubscribeVersion': None,
'WithdrawAsset': {
'assets': [
{
'fun': 'scale_info::78',
'id': 'scale_info::77',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::76',
'halt_on_error': 'bool',
'instructions': [
'scale_info::245',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::87',
'beneficiary': 'scale_info::61',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'effects': [
'scale_info::247',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::87',
'receive': [
'scale_info::76',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::87',
'effects': [
'scale_info::247',
],
'reserve': 'scale_info::61',
},
'InitiateTeleport': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'effects': [
'scale_info::247',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'query_id': 'u64',
},
},
],
},
},
'V2': [
{
'BuyExecution': {
'fees': {
'fun': 'scale_info::78',
'id': 'scale_info::77',
},
'weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
},
'ClaimAsset': {
'assets': [
'scale_info::76',
],
'ticket': {
'interior': 'scale_info::62',
'parents': 'u8',
},
},
'ClearError': None,
'ClearOrigin': None,
'DepositAsset': {
'assets': {
'Definite': [
'scale_info::76',
],
'Wild': 'scale_info::88',
},
'beneficiary': {
'interior': 'scale_info::62',
'parents': 'u8',
},
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': {
'Definite': [
'scale_info::76',
],
'Wild': 'scale_info::88',
},
'dest': {
'interior': 'scale_info::62',
'parents': 'u8',
},
'max_assets': 'u32',
'xcm': [
'scale_info::73',
],
},
'DescendOrigin': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::63',
'scale_info::63',
),
'X3': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X4': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X5': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X6': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X7': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X8': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
},
'ExchangeAsset': {
'give': {
'Definite': [
'scale_info::76',
],
'Wild': 'scale_info::88',
},
'receive': [
'scale_info::76',
],
},
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'InitiateReserveWithdraw': {
'assets': {
'Definite': [
'scale_info::76',
],
'Wild': 'scale_info::88',
},
'reserve': {
'interior': 'scale_info::62',
'parents': 'u8',
},
'xcm': [
'scale_info::73',
],
},
'InitiateTeleport': {
'assets': {
'Definite': [
'scale_info::76',
],
'Wild': 'scale_info::88',
},
'dest': {
'interior': 'scale_info::62',
'parents': 'u8',
},
'xcm': [
'scale_info::73',
],
},
'QueryHolding': {
'assets': {
'Definite': [
'scale_info::76',
],
'Wild': 'scale_info::88',
},
'dest': {
'interior': 'scale_info::62',
'parents': 'u8',
},
'max_response_weight': 'u64',
'query_id': 'u64',
},
'QueryResponse': {
'max_weight': 'u64',
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::76',
],
'ExecutionResult': (
None,
(
'u32',
'scale_info::56',
),
),
'Null': None,
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': [
'scale_info::76',
],
'RefundSurplus': None,
'ReportError': {
'dest': {
'interior': 'scale_info::62',
'parents': 'u8',
},
'max_response_weight': 'u64',
'query_id': 'u64',
},
'ReserveAssetDeposited': [
'scale_info::76',
],
'SetAppendix': [
'scale_info::73',
],
'SetErrorHandler': [
'scale_info::73',
],
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::76',
],
'beneficiary': {
'interior': 'scale_info::62',
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::76',
],
'dest': {
'interior': 'scale_info::62',
'parents': 'u8',
},
'xcm': [
'scale_info::73',
],
},
'Trap': 'u64',
'UnsubscribeVersion': None,
'WithdrawAsset': [
'scale_info::76',
],
},
],
},
}
)
Events¶
Sent¶
XCM message sent. [to, message]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| to | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}})}} |
| message | Xcm<()> |
[{'WithdrawAsset': ['scale_info::76'], 'ReserveAssetDeposited': ['scale_info::76'], 'ReceiveTeleportedAsset': ['scale_info::76'], 'QueryResponse': {'query_id': 'u64', 'response': {'Null': None, 'Assets': ['scale_info::76'], 'ExecutionResult': (None, ('u32', 'scale_info::56')), 'Version': 'u32'}, 'max_weight': 'u64'}, 'TransferAsset': {'assets': ['scale_info::76'], 'beneficiary': {'parents': 'u8', 'interior': 'scale_info::62'}}, 'TransferReserveAsset': {'assets': ['scale_info::76'], 'dest': {'parents': 'u8', 'interior': 'scale_info::62'}, 'xcm': ['scale_info::73']}, 'Transact': {'origin_type': ('Native', 'SovereignAccount', 'Superuser', 'Xcm'), 'require_weight_at_most': 'u64', 'call': {'encoded': 'Bytes'}}, 'HrmpNewChannelOpenRequest': {'sender': 'u32', 'max_message_size': 'u32', 'max_capacity': 'u32'}, 'HrmpChannelAccepted': {'recipient': 'u32'}, 'HrmpChannelClosing': {'initiator': 'u32', 'sender': 'u32', 'recipient': 'u32'}, 'ClearOrigin': None, 'DescendOrigin': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, 'X2': ('scale_info::63', 'scale_info::63'), 'X3': ('scale_info::63', 'scale_info::63', 'scale_info::63'), 'X4': ('scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63'), 'X5': ('scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63'), 'X6': ('scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63'), 'X7': ('scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63'), 'X8': ('scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63')}, 'ReportError': {'query_id': 'u64', 'dest': {'parents': 'u8', 'interior': 'scale_info::62'}, 'max_response_weight': 'u64'}, 'DepositAsset': {'assets': {'Definite': ['scale_info::76'], 'Wild': 'scale_info::88'}, 'max_assets': 'u32', 'beneficiary': {'parents': 'u8', 'interior': 'scale_info::62'}}, 'DepositReserveAsset': {'assets': {'Definite': ['scale_info::76'], 'Wild': 'scale_info::88'}, 'max_assets': 'u32', 'dest': {'parents': 'u8', 'interior': 'scale_info::62'}, 'xcm': ['scale_info::73']}, 'ExchangeAsset': {'give': {'Definite': ['scale_info::76'], 'Wild': 'scale_info::88'}, 'receive': ['scale_info::76']}, 'InitiateReserveWithdraw': {'assets': {'Definite': ['scale_info::76'], 'Wild': 'scale_info::88'}, 'reserve': {'parents': 'u8', 'interior': 'scale_info::62'}, 'xcm': ['scale_info::73']}, 'InitiateTeleport': {'assets': {'Definite': ['scale_info::76'], 'Wild': 'scale_info::88'}, 'dest': {'parents': 'u8', 'interior': 'scale_info::62'}, 'xcm': ['scale_info::73']}, 'QueryHolding': {'query_id': 'u64', 'dest': {'parents': 'u8', 'interior': 'scale_info::62'}, 'assets': {'Definite': ['scale_info::76'], 'Wild': 'scale_info::88'}, 'max_response_weight': 'u64'}, 'BuyExecution': {'fees': {'id': 'scale_info::77', 'fun': 'scale_info::78'}, 'weight_limit': {'Unlimited': None, 'Limited': 'u64'}}, 'RefundSurplus': None, 'SetErrorHandler': ['scale_info::73'], 'SetAppendix': ['scale_info::73'], 'ClearError': None, 'ClaimAsset': {'assets': ['scale_info::76'], 'ticket': {'parents': 'u8', 'interior': 'scale_info::62'}}, 'Trap': 'u64', 'SubscribeVersion': {'query_id': 'u64', 'max_response_weight': 'u64'}, 'UnsubscribeVersion': None}] |
Errors¶
BadVersion¶
The version of the Versioned value used is not able to be
interpreted.
SendFailure¶
The message and destination was recognized as being reachable but the operation could not be completed.
Unreachable¶
The message and destination combination was not recognized as being reachable.
ParachainInfo¶
Storage functions¶
ParachainId¶
Python¶
result = substrate.query(
'ParachainInfo', 'ParachainId', []
)
Return value¶
'u32'
ParachainSystem¶
Calls¶
authorize_upgrade¶
Attributes¶
| Name | Type |
|---|---|
| code_hash | T::Hash |
Python¶
call = substrate.compose_call(
'ParachainSystem', 'authorize_upgrade', {'code_hash': '[u8; 32]'}
)
enact_authorized_upgrade¶
Attributes¶
| Name | Type |
|---|---|
| code | Vec<u8> |
Python¶
call = substrate.compose_call(
'ParachainSystem', 'enact_authorized_upgrade', {'code': 'Bytes'}
)
set_validation_data¶
Set the current validation data.
This should be invoked exactly once per block. It will panic at the finalization phase if the call was not invoked.
The dispatch origin for this call must be Inherent
As a side effect, this function upgrades the current validation function if the appropriate time has come.
Attributes¶
| Name | Type |
|---|---|
| data | ParachainInherentData |
Python¶
call = substrate.compose_call(
'ParachainSystem', 'set_validation_data', {
'data': {
'downward_messages': [
{
'msg': 'Bytes',
'sent_at': 'u32',
},
],
'horizontal_messages': 'scale_info::316',
'relay_chain_state': {
'trie_nodes': 'scale_info::313',
},
'validation_data': {
'max_pov_size': 'u32',
'parent_head': 'Bytes',
'relay_parent_number': 'u32',
'relay_parent_storage_root': '[u8; 32]',
},
},
}
)
sudo_send_upward_message¶
Attributes¶
| Name | Type |
|---|---|
| message | UpwardMessage |
Python¶
call = substrate.compose_call(
'ParachainSystem', 'sudo_send_upward_message', {'message': 'Bytes'}
)
Events¶
DownwardMessagesProcessed¶
Downward messages were processed using the given weight.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| weight_used | Weight |
{'ref_time': 'u64', 'proof_size': 'u64'} |
| dmq_head | relay_chain::Hash |
[u8; 32] |
DownwardMessagesReceived¶
Some downward messages have been received and will be processed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| count | u32 |
u32 |
UpgradeAuthorized¶
An upgrade has been authorized.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| code_hash | T::Hash |
[u8; 32] |
ValidationFunctionApplied¶
The validation function was applied as of the contained relay chain block number.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| relay_chain_block_num | RelayChainBlockNumber |
u32 |
ValidationFunctionDiscarded¶
The relay-chain aborted the upgrade process.
Attributes¶
No attributes
ValidationFunctionStored¶
The validation function has been scheduled to apply.
Attributes¶
No attributes
Storage functions¶
AnnouncedHrmpMessagesPerCandidate¶
The number of HRMP messages we observed in on_initialize and thus used that number for
announcing the weight of on_initialize and on_finalize.
Python¶
result = substrate.query(
'ParachainSystem', 'AnnouncedHrmpMessagesPerCandidate', []
)
Return value¶
'u32'
AuthorizedUpgrade¶
The next authorized upgrade, if there is one.
Python¶
result = substrate.query(
'ParachainSystem', 'AuthorizedUpgrade', []
)
Return value¶
'[u8; 32]'
CustomValidationHeadData¶
A custom head data that should be returned as result of validate_block.
See [Pallet::set_custom_validation_head_data] for more information.
Python¶
result = substrate.query(
'ParachainSystem', 'CustomValidationHeadData', []
)
Return value¶
'Bytes'
DidSetValidationCode¶
Were the validation data set to notify the relay chain?
Python¶
result = substrate.query(
'ParachainSystem', 'DidSetValidationCode', []
)
Return value¶
'bool'
HostConfiguration¶
The parachain host configuration that was obtained from the relay parent.
This field is meant to be updated each block with the validation data inherent. Therefore,
before processing of the inherent, e.g. in on_initialize this data may be stale.
This data is also absent from the genesis.
Python¶
result = substrate.query(
'ParachainSystem', 'HostConfiguration', []
)
Return value¶
{
'hrmp_max_message_num_per_candidate': 'u32',
'max_code_size': 'u32',
'max_head_data_size': 'u32',
'max_upward_message_num_per_candidate': 'u32',
'max_upward_message_size': 'u32',
'max_upward_queue_count': 'u32',
'max_upward_queue_size': 'u32',
'validation_upgrade_cooldown': 'u32',
'validation_upgrade_delay': 'u32',
}
HrmpOutboundMessages¶
HRMP messages that were sent in a block.
This will be cleared in on_initialize of each new block.
Python¶
result = substrate.query(
'ParachainSystem', 'HrmpOutboundMessages', []
)
Return value¶
[{'data': 'Bytes', 'recipient': 'u32'}]
HrmpWatermark¶
HRMP watermark that was set in a block.
This will be cleared in on_initialize of each new block.
Python¶
result = substrate.query(
'ParachainSystem', 'HrmpWatermark', []
)
Return value¶
'u32'
LastDmqMqcHead¶
The last downward message queue chain head we have observed.
This value is loaded before and saved after processing inbound downward messages carried by the system inherent.
Python¶
result = substrate.query(
'ParachainSystem', 'LastDmqMqcHead', []
)
Return value¶
'[u8; 32]'
LastHrmpMqcHeads¶
The message queue chain heads we have observed per each channel incoming channel.
This value is loaded before and saved after processing inbound downward messages carried by the system inherent.
Python¶
result = substrate.query(
'ParachainSystem', 'LastHrmpMqcHeads', []
)
Return value¶
'scale_info::533'
LastRelayChainBlockNumber¶
The relay chain block number associated with the last parachain block.
Python¶
result = substrate.query(
'ParachainSystem', 'LastRelayChainBlockNumber', []
)
Return value¶
'u32'
NewValidationCode¶
Validation code that is set by the parachain and is to be communicated to collator and consequently the relay-chain.
This will be cleared in on_initialize of each new block if no other pallet already set
the value.
Python¶
result = substrate.query(
'ParachainSystem', 'NewValidationCode', []
)
Return value¶
'Bytes'
PendingUpwardMessages¶
Upward messages that are still pending and not yet send to the relay chain.
Python¶
result = substrate.query(
'ParachainSystem', 'PendingUpwardMessages', []
)
Return value¶
['Bytes']
PendingValidationCode¶
In case of a scheduled upgrade, this storage field contains the validation code to be applied.
As soon as the relay chain gives us the go-ahead signal, we will overwrite the :code
which will result the next block process with the new validation code. This concludes the upgrade process.
Python¶
result = substrate.query(
'ParachainSystem', 'PendingValidationCode', []
)
Return value¶
'Bytes'
ProcessedDownwardMessages¶
Number of downward messages processed in a block.
This will be cleared in on_initialize of each new block.
Python¶
result = substrate.query(
'ParachainSystem', 'ProcessedDownwardMessages', []
)
Return value¶
'u32'
RelayStateProof¶
The state proof for the last relay parent block.
This field is meant to be updated each block with the validation data inherent. Therefore,
before processing of the inherent, e.g. in on_initialize this data may be stale.
This data is also absent from the genesis.
Python¶
result = substrate.query(
'ParachainSystem', 'RelayStateProof', []
)
Return value¶
{'trie_nodes': 'scale_info::313'}
RelevantMessagingState¶
The snapshot of some state related to messaging relevant to the current parachain as per the relay parent.
This field is meant to be updated each block with the validation data inherent. Therefore,
before processing of the inherent, e.g. in on_initialize this data may be stale.
This data is also absent from the genesis.
Python¶
result = substrate.query(
'ParachainSystem', 'RelevantMessagingState', []
)
Return value¶
{
'dmq_mqc_head': '[u8; 32]',
'egress_channels': [
(
'u32',
{
'max_capacity': 'u32',
'max_message_size': 'u32',
'max_total_size': 'u32',
'mqc_head': (None, '[u8; 32]'),
'msg_count': 'u32',
'total_size': 'u32',
},
),
],
'ingress_channels': [
(
'u32',
{
'max_capacity': 'u32',
'max_message_size': 'u32',
'max_total_size': 'u32',
'mqc_head': (None, '[u8; 32]'),
'msg_count': 'u32',
'total_size': 'u32',
},
),
],
'relay_dispatch_queue_size': ('u32', 'u32'),
}
ReservedDmpWeightOverride¶
The weight we reserve at the beginning of the block for processing DMP messages. This overrides the amount set in the Config trait.
Python¶
result = substrate.query(
'ParachainSystem', 'ReservedDmpWeightOverride', []
)
Return value¶
{'proof_size': 'u64', 'ref_time': 'u64'}
ReservedXcmpWeightOverride¶
The weight we reserve at the beginning of the block for processing XCMP messages. This overrides the amount set in the Config trait.
Python¶
result = substrate.query(
'ParachainSystem', 'ReservedXcmpWeightOverride', []
)
Return value¶
{'proof_size': 'u64', 'ref_time': 'u64'}
UpgradeRestrictionSignal¶
An option which indicates if the relay-chain restricts signalling a validation code upgrade.
In other words, if this is Some and [NewValidationCode] is Some then the produced
candidate will be invalid.
This storage item is a mirror of the corresponding value for the current parachain from the relay-chain. This value is ephemeral which means it doesn't hit the storage. This value is set after the inherent.
Python¶
result = substrate.query(
'ParachainSystem', 'UpgradeRestrictionSignal', []
)
Return value¶
(None, ('Present', ))
UpwardMessages¶
Upward messages that were sent in a block.
This will be cleared in on_initialize of each new block.
Python¶
result = substrate.query(
'ParachainSystem', 'UpwardMessages', []
)
Return value¶
['Bytes']
ValidationData¶
The [PersistedValidationData] set for this block.
This value is expected to be set only once per block and it's never stored
in the trie.
Python¶
result = substrate.query(
'ParachainSystem', 'ValidationData', []
)
Return value¶
{
'max_pov_size': 'u32',
'parent_head': 'Bytes',
'relay_parent_number': 'u32',
'relay_parent_storage_root': '[u8; 32]',
}
Errors¶
HostConfigurationNotAvailable¶
The inherent which supplies the host configuration did not run this block
NotScheduled¶
No validation function upgrade is currently scheduled.
NothingAuthorized¶
No code upgrade has been authorized.
OverlappingUpgrades¶
Attempt to upgrade validation function while existing upgrade pending
ProhibitedByPolkadot¶
Polkadot currently prohibits this parachain from upgrading its validation function
TooBig¶
The supplied validation function has compiled into a blob larger than Polkadot is willing to run
Unauthorized¶
The given code upgrade has not been authorized.
ValidationDataNotAvailable¶
The inherent which supplies the validation data did not run this block
PolkadotXcm¶
Calls¶
execute¶
Execute an XCM message from a local, signed, origin.
An event is deposited indicating whether msg could be executed completely or only
partially.
No more than max_weight will be used in its attempted execution. If this is less than the
maximum amount of weight that the message could take to be executed, then no execution
attempt will be made.
NOTE: A successful return to this does not imply that the msg was executed successfully
to completion; only that some of it was executed.
Attributes¶
| Name | Type |
|---|---|
| message | Box<VersionedXcm<<T as SysConfig>::RuntimeCall>> |
| max_weight | XcmWeight |
Python¶
call = substrate.compose_call(
'PolkadotXcm', 'execute', {
'max_weight': 'u64',
'message': {
'V0': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
{
'AbstractFungible': 'InnerStruct',
'AbstractNonFungible': 'InnerStruct',
'All': None,
'AllAbstractFungible': 'InnerStruct',
'AllAbstractNonFungible': 'InnerStruct',
'AllConcreteFungible': 'InnerStruct',
'AllConcreteNonFungible': 'InnerStruct',
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': 'InnerStruct',
'ConcreteNonFungible': 'InnerStruct',
'None': None,
},
],
},
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::94',
],
},
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': 'InnerStruct',
'HrmpChannelClosing': 'InnerStruct',
'HrmpNewChannelOpenRequest': 'InnerStruct',
'QueryResponse': 'InnerStruct',
'RelayedFrom': 'InnerStruct',
'ReserveAssetDeposit': 'InnerStruct',
'TeleportAsset': 'InnerStruct',
'Transact': 'InnerStruct',
'TransferAsset': 'InnerStruct',
'TransferReserveAsset': 'InnerStruct',
'WithdrawAsset': 'InnerStruct',
},
'who': {
'Null': None,
'X1': 'scale_info::96',
'X2': (
'scale_info::96',
'scale_info::96',
),
'X3': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
},
'ReserveAssetDeposit': {
'assets': [
'scale_info::94',
],
'effects': [
'scale_info::253',
],
},
'TeleportAsset': {
'assets': [
'scale_info::94',
],
'effects': [
'scale_info::253',
],
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::94',
],
'dest': {
'Null': None,
'X1': 'scale_info::96',
'X2': (
'scale_info::96',
'scale_info::96',
),
'X3': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::94',
],
'dest': {
'Null': None,
'X1': 'scale_info::96',
'X2': (
'scale_info::96',
'scale_info::96',
),
'X3': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
'effects': [
'scale_info::242',
],
},
'WithdrawAsset': {
'assets': [
'scale_info::94',
],
'effects': [
'scale_info::253',
],
},
},
'who': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'ReserveAssetDeposit': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::79',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::95',
},
'AllConcreteNonFungible': {
'class': 'scale_info::95',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::95',
},
'ConcreteNonFungible': {
'class': 'scale_info::95',
'instance': 'scale_info::79',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::94',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::251',
],
},
'DepositAsset': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
},
'DepositReserveAsset': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'effects': [
'scale_info::242',
],
},
'ExchangeAsset': {
'give': [
'scale_info::94',
],
'receive': [
'scale_info::94',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::94',
],
'effects': [
'scale_info::242',
],
'reserve': 'scale_info::95',
},
'InitiateTeleport': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'effects': [
'scale_info::242',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'query_id': 'u64',
},
},
],
},
'TeleportAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::79',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::95',
},
'AllConcreteNonFungible': {
'class': 'scale_info::95',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::95',
},
'ConcreteNonFungible': {
'class': 'scale_info::95',
'instance': 'scale_info::79',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::94',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::251',
],
},
'DepositAsset': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
},
'DepositReserveAsset': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'effects': [
'scale_info::242',
],
},
'ExchangeAsset': {
'give': [
'scale_info::94',
],
'receive': [
'scale_info::94',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::94',
],
'effects': [
'scale_info::242',
],
'reserve': 'scale_info::95',
},
'InitiateTeleport': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'effects': [
'scale_info::242',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'query_id': 'u64',
},
},
],
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::79',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::95',
},
'AllConcreteNonFungible': {
'class': 'scale_info::95',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::95',
},
'ConcreteNonFungible': {
'class': 'scale_info::95',
'instance': 'scale_info::79',
},
'None': None,
},
],
'dest': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'TransferReserveAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::79',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::95',
},
'AllConcreteNonFungible': {
'class': 'scale_info::95',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::95',
},
'ConcreteNonFungible': {
'class': 'scale_info::95',
'instance': 'scale_info::79',
},
'None': None,
},
],
'dest': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::94',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::240',
],
},
'DepositAsset': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
},
'DepositReserveAsset': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'effects': [
'scale_info::242',
],
},
'ExchangeAsset': {
'give': [
'scale_info::94',
],
'receive': [
'scale_info::94',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::94',
],
'effects': [
'scale_info::242',
],
'reserve': 'scale_info::95',
},
'InitiateTeleport': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'effects': [
'scale_info::242',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'query_id': 'u64',
},
},
],
},
'WithdrawAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::79',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::95',
},
'AllConcreteNonFungible': {
'class': 'scale_info::95',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::95',
},
'ConcreteNonFungible': {
'class': 'scale_info::95',
'instance': 'scale_info::79',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::94',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::251',
],
},
'DepositAsset': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
},
'DepositReserveAsset': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'effects': [
'scale_info::242',
],
},
'ExchangeAsset': {
'give': [
'scale_info::94',
],
'receive': [
'scale_info::94',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::94',
],
'effects': [
'scale_info::242',
],
'reserve': 'scale_info::95',
},
'InitiateTeleport': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'effects': [
'scale_info::242',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'query_id': 'u64',
},
},
],
},
},
'V1': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::76',
],
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': {
'assets': [
{
'fun': 'scale_info::78',
'id': 'scale_info::77',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::76',
'halt_on_error': 'bool',
'instructions': [
'scale_info::256',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::87',
'beneficiary': 'scale_info::61',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'effects': [
'scale_info::247',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::87',
'receive': [
'scale_info::76',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::87',
'effects': [
'scale_info::247',
],
'reserve': 'scale_info::61',
},
'InitiateTeleport': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'effects': [
'scale_info::247',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'query_id': 'u64',
},
},
],
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::76',
],
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': {
'assets': [
'scale_info::76',
],
'effects': [
'scale_info::258',
],
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': 'InnerStruct',
'HrmpChannelClosing': 'InnerStruct',
'HrmpNewChannelOpenRequest': 'InnerStruct',
'QueryResponse': 'InnerStruct',
'ReceiveTeleportedAsset': 'InnerStruct',
'RelayedFrom': 'InnerStruct',
'ReserveAssetDeposited': 'InnerStruct',
'SubscribeVersion': 'InnerStruct',
'Transact': 'InnerStruct',
'TransferAsset': 'InnerStruct',
'TransferReserveAsset': 'InnerStruct',
'UnsubscribeVersion': None,
'WithdrawAsset': 'InnerStruct',
},
'who': {
'Here': None,
'X1': 'scale_info::63',
'X2': (
'scale_info::63',
'scale_info::63',
),
'X3': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X4': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X5': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X6': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X7': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X8': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
},
},
'ReserveAssetDeposited': {
'assets': [
'scale_info::76',
],
'effects': [
'scale_info::258',
],
},
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::76',
],
'beneficiary': {
'interior': 'scale_info::62',
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::76',
],
'dest': {
'interior': 'scale_info::62',
'parents': 'u8',
},
'effects': [
'scale_info::247',
],
},
'UnsubscribeVersion': None,
'WithdrawAsset': {
'assets': [
'scale_info::76',
],
'effects': [
'scale_info::258',
],
},
},
'who': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
},
},
'ReserveAssetDeposited': {
'assets': [
{
'fun': 'scale_info::78',
'id': 'scale_info::77',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::76',
'halt_on_error': 'bool',
'instructions': [
'scale_info::256',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::87',
'beneficiary': 'scale_info::61',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'effects': [
'scale_info::247',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::87',
'receive': [
'scale_info::76',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::87',
'effects': [
'scale_info::247',
],
'reserve': 'scale_info::61',
},
'InitiateTeleport': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'effects': [
'scale_info::247',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'query_id': 'u64',
},
},
],
},
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
{
'fun': 'scale_info::78',
'id': 'scale_info::77',
},
],
'beneficiary': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::63',
'scale_info::63',
),
'X3': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X4': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X5': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X6': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X7': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X8': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
},
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
{
'fun': 'scale_info::78',
'id': 'scale_info::77',
},
],
'dest': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::63',
'scale_info::63',
),
'X3': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X4': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X5': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X6': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X7': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X8': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
},
'parents': 'u8',
},
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::76',
'halt_on_error': 'bool',
'instructions': [
'scale_info::245',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::87',
'beneficiary': 'scale_info::61',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'effects': [
'scale_info::247',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::87',
'receive': [
'scale_info::76',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::87',
'effects': [
'scale_info::247',
],
'reserve': 'scale_info::61',
},
'InitiateTeleport': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'effects': [
'scale_info::247',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'query_id': 'u64',
},
},
],
},
'UnsubscribeVersion': None,
'WithdrawAsset': {
'assets': [
{
'fun': 'scale_info::78',
'id': 'scale_info::77',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::76',
'halt_on_error': 'bool',
'instructions': [
'scale_info::256',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::87',
'beneficiary': 'scale_info::61',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'effects': [
'scale_info::247',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::87',
'receive': [
'scale_info::76',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::87',
'effects': [
'scale_info::247',
],
'reserve': 'scale_info::61',
},
'InitiateTeleport': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'effects': [
'scale_info::247',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'query_id': 'u64',
},
},
],
},
},
'V2': [
{
'BuyExecution': {
'fees': {
'fun': 'scale_info::78',
'id': 'scale_info::77',
},
'weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
},
'ClaimAsset': {
'assets': [
'scale_info::76',
],
'ticket': {
'interior': 'scale_info::62',
'parents': 'u8',
},
},
'ClearError': None,
'ClearOrigin': None,
'DepositAsset': {
'assets': {
'Definite': [
'scale_info::76',
],
'Wild': 'scale_info::88',
},
'beneficiary': {
'interior': 'scale_info::62',
'parents': 'u8',
},
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': {
'Definite': [
'scale_info::76',
],
'Wild': 'scale_info::88',
},
'dest': {
'interior': 'scale_info::62',
'parents': 'u8',
},
'max_assets': 'u32',
'xcm': [
'scale_info::73',
],
},
'DescendOrigin': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::63',
'scale_info::63',
),
'X3': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X4': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X5': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X6': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X7': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X8': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
},
'ExchangeAsset': {
'give': {
'Definite': [
'scale_info::76',
],
'Wild': 'scale_info::88',
},
'receive': [
'scale_info::76',
],
},
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'InitiateReserveWithdraw': {
'assets': {
'Definite': [
'scale_info::76',
],
'Wild': 'scale_info::88',
},
'reserve': {
'interior': 'scale_info::62',
'parents': 'u8',
},
'xcm': [
'scale_info::73',
],
},
'InitiateTeleport': {
'assets': {
'Definite': [
'scale_info::76',
],
'Wild': 'scale_info::88',
},
'dest': {
'interior': 'scale_info::62',
'parents': 'u8',
},
'xcm': [
'scale_info::73',
],
},
'QueryHolding': {
'assets': {
'Definite': [
'scale_info::76',
],
'Wild': 'scale_info::88',
},
'dest': {
'interior': 'scale_info::62',
'parents': 'u8',
},
'max_response_weight': 'u64',
'query_id': 'u64',
},
'QueryResponse': {
'max_weight': 'u64',
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::76',
],
'ExecutionResult': (
None,
(
'u32',
'scale_info::56',
),
),
'Null': None,
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': [
'scale_info::76',
],
'RefundSurplus': None,
'ReportError': {
'dest': {
'interior': 'scale_info::62',
'parents': 'u8',
},
'max_response_weight': 'u64',
'query_id': 'u64',
},
'ReserveAssetDeposited': [
'scale_info::76',
],
'SetAppendix': [
'scale_info::262',
],
'SetErrorHandler': [
'scale_info::262',
],
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::76',
],
'beneficiary': {
'interior': 'scale_info::62',
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::76',
],
'dest': {
'interior': 'scale_info::62',
'parents': 'u8',
},
'xcm': [
'scale_info::73',
],
},
'Trap': 'u64',
'UnsubscribeVersion': None,
'WithdrawAsset': [
'scale_info::76',
],
},
],
},
}
)
force_default_xcm_version¶
Set a safe XCM version (the version that XCM should be encoded with if the most recent version a destination can accept is unknown).
origin: Must be Root.maybe_xcm_version: The default XCM encoding version, orNoneto disable.
Attributes¶
| Name | Type |
|---|---|
| maybe_xcm_version | Option<XcmVersion> |
Python¶
call = substrate.compose_call(
'PolkadotXcm', 'force_default_xcm_version', {'maybe_xcm_version': (None, 'u32')}
)
force_subscribe_version_notify¶
Ask a location to notify us regarding their XCM version and any changes to it.
origin: Must be Root.location: The location to which we should subscribe for XCM version notifications.
Attributes¶
| Name | Type |
|---|---|
| location | Box<VersionedMultiLocation> |
Python¶
call = substrate.compose_call(
'PolkadotXcm', 'force_subscribe_version_notify', {
'location': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
},
'parents': 'u8',
},
},
}
)
force_unsubscribe_version_notify¶
Require that a particular destination should no longer notify us regarding any XCM version changes.
origin: Must be Root.location: The location to which we are currently subscribed for XCM version notifications which we no longer desire.
Attributes¶
| Name | Type |
|---|---|
| location | Box<VersionedMultiLocation> |
Python¶
call = substrate.compose_call(
'PolkadotXcm', 'force_unsubscribe_version_notify', {
'location': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
},
'parents': 'u8',
},
},
}
)
force_xcm_version¶
Extoll that a particular destination can be communicated with through a particular version of XCM.
origin: Must be Root.location: The destination that is being described.xcm_version: The latest version of XCM thatlocationsupports.
Attributes¶
| Name | Type |
|---|---|
| location | Box<MultiLocation> |
| xcm_version | XcmVersion |
Python¶
call = substrate.compose_call(
'PolkadotXcm', 'force_xcm_version', {
'location': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'parents': 'u8',
},
'xcm_version': 'u32',
}
)
limited_reserve_transfer_assets¶
Transfer some assets from the local chain to the sovereign account of a destination chain and forward a notification XCM.
Fee payment on the destination side is made from the asset in the assets vector of
index fee_asset_item, up to enough to pay for weight_limit of weight. If more weight
is needed than weight_limit, then the operation will fail and the assets send may be
at risk.
origin: Must be capable of withdrawing theassetsand executing XCM.dest: Destination context for the assets. Will typically beX2(Parent, Parachain(..))to send from parachain to parachain, orX1(Parachain(..))to send from relay to parachain.beneficiary: A beneficiary location for the assets in the context ofdest. Will generally be anAccountId32value.assets: The assets to be withdrawn. This should include the assets used to pay the fee on thedestside.fee_asset_item: The index intoassetsof the item which should be used to pay fees.weight_limit: The remote-side weight limit, if any, for the XCM fee purchase.
Attributes¶
| Name | Type |
|---|---|
| dest | Box<VersionedMultiLocation> |
| beneficiary | Box<VersionedMultiLocation> |
| assets | Box<VersionedMultiAssets> |
| fee_asset_item | u32 |
| weight_limit | WeightLimit |
Python¶
call = substrate.compose_call(
'PolkadotXcm', 'limited_reserve_transfer_assets', {
'assets': {
'V0': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::96',
'scale_info::96',
),
'X3': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
},
'AllConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::96',
'scale_info::96',
),
'X3': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::96',
'scale_info::96',
),
'X3': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
},
'ConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::96',
'scale_info::96',
),
'X3': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'None': None,
},
],
'V1': [
{
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': 'scale_info::62',
'parents': 'u8',
},
},
},
],
},
'beneficiary': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
},
'parents': 'u8',
},
},
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
},
'parents': 'u8',
},
},
'fee_asset_item': 'u32',
'weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
}
)
limited_teleport_assets¶
Teleport some assets from the local chain to some destination chain.
Fee payment on the destination side is made from the asset in the assets vector of
index fee_asset_item, up to enough to pay for weight_limit of weight. If more weight
is needed than weight_limit, then the operation will fail and the assets send may be
at risk.
origin: Must be capable of withdrawing theassetsand executing XCM.dest: Destination context for the assets. Will typically beX2(Parent, Parachain(..))to send from parachain to parachain, orX1(Parachain(..))to send from relay to parachain.beneficiary: A beneficiary location for the assets in the context ofdest. Will generally be anAccountId32value.assets: The assets to be withdrawn. The first item should be the currency used to to pay the fee on thedestside. May not be empty.fee_asset_item: The index intoassetsof the item which should be used to pay fees.weight_limit: The remote-side weight limit, if any, for the XCM fee purchase.
Attributes¶
| Name | Type |
|---|---|
| dest | Box<VersionedMultiLocation> |
| beneficiary | Box<VersionedMultiLocation> |
| assets | Box<VersionedMultiAssets> |
| fee_asset_item | u32 |
| weight_limit | WeightLimit |
Python¶
call = substrate.compose_call(
'PolkadotXcm', 'limited_teleport_assets', {
'assets': {
'V0': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::96',
'scale_info::96',
),
'X3': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
},
'AllConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::96',
'scale_info::96',
),
'X3': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::96',
'scale_info::96',
),
'X3': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
},
'ConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::96',
'scale_info::96',
),
'X3': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'None': None,
},
],
'V1': [
{
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': 'scale_info::62',
'parents': 'u8',
},
},
},
],
},
'beneficiary': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
},
'parents': 'u8',
},
},
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
},
'parents': 'u8',
},
},
'fee_asset_item': 'u32',
'weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
}
)
reserve_transfer_assets¶
Transfer some assets from the local chain to the sovereign account of a destination chain and forward a notification XCM.
Fee payment on the destination side is made from the asset in the assets vector of
index fee_asset_item. The weight limit for fees is not provided and thus is unlimited,
with all fees taken as needed from the asset.
origin: Must be capable of withdrawing theassetsand executing XCM.dest: Destination context for the assets. Will typically beX2(Parent, Parachain(..))to send from parachain to parachain, orX1(Parachain(..))to send from relay to parachain.beneficiary: A beneficiary location for the assets in the context ofdest. Will generally be anAccountId32value.assets: The assets to be withdrawn. This should include the assets used to pay the fee on thedestside.fee_asset_item: The index intoassetsof the item which should be used to pay fees.
Attributes¶
| Name | Type |
|---|---|
| dest | Box<VersionedMultiLocation> |
| beneficiary | Box<VersionedMultiLocation> |
| assets | Box<VersionedMultiAssets> |
| fee_asset_item | u32 |
Python¶
call = substrate.compose_call(
'PolkadotXcm', 'reserve_transfer_assets', {
'assets': {
'V0': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::96',
'scale_info::96',
),
'X3': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
},
'AllConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::96',
'scale_info::96',
),
'X3': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::96',
'scale_info::96',
),
'X3': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
},
'ConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::96',
'scale_info::96',
),
'X3': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'None': None,
},
],
'V1': [
{
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': 'scale_info::62',
'parents': 'u8',
},
},
},
],
},
'beneficiary': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
},
'parents': 'u8',
},
},
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
},
'parents': 'u8',
},
},
'fee_asset_item': 'u32',
}
)
send¶
Attributes¶
| Name | Type |
|---|---|
| dest | Box<VersionedMultiLocation> |
| message | Box<VersionedXcm<()>> |
Python¶
call = substrate.compose_call(
'PolkadotXcm', 'send', {
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
},
'parents': 'u8',
},
},
'message': {
'V0': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
{
'AbstractFungible': 'InnerStruct',
'AbstractNonFungible': 'InnerStruct',
'All': None,
'AllAbstractFungible': 'InnerStruct',
'AllAbstractNonFungible': 'InnerStruct',
'AllConcreteFungible': 'InnerStruct',
'AllConcreteNonFungible': 'InnerStruct',
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': 'InnerStruct',
'ConcreteNonFungible': 'InnerStruct',
'None': None,
},
],
},
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::94',
],
},
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': 'InnerStruct',
'HrmpChannelClosing': 'InnerStruct',
'HrmpNewChannelOpenRequest': 'InnerStruct',
'QueryResponse': 'InnerStruct',
'RelayedFrom': 'InnerStruct',
'ReserveAssetDeposit': 'InnerStruct',
'TeleportAsset': 'InnerStruct',
'Transact': 'InnerStruct',
'TransferAsset': 'InnerStruct',
'TransferReserveAsset': 'InnerStruct',
'WithdrawAsset': 'InnerStruct',
},
'who': {
'Null': None,
'X1': 'scale_info::96',
'X2': (
'scale_info::96',
'scale_info::96',
),
'X3': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
},
'ReserveAssetDeposit': {
'assets': [
'scale_info::94',
],
'effects': [
'scale_info::242',
],
},
'TeleportAsset': {
'assets': [
'scale_info::94',
],
'effects': [
'scale_info::242',
],
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::94',
],
'dest': {
'Null': None,
'X1': 'scale_info::96',
'X2': (
'scale_info::96',
'scale_info::96',
),
'X3': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::94',
],
'dest': {
'Null': None,
'X1': 'scale_info::96',
'X2': (
'scale_info::96',
'scale_info::96',
),
'X3': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
'effects': [
'scale_info::242',
],
},
'WithdrawAsset': {
'assets': [
'scale_info::94',
],
'effects': [
'scale_info::242',
],
},
},
'who': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'ReserveAssetDeposit': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::79',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::95',
},
'AllConcreteNonFungible': {
'class': 'scale_info::95',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::95',
},
'ConcreteNonFungible': {
'class': 'scale_info::95',
'instance': 'scale_info::79',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::94',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::240',
],
},
'DepositAsset': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
},
'DepositReserveAsset': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'effects': [
'scale_info::242',
],
},
'ExchangeAsset': {
'give': [
'scale_info::94',
],
'receive': [
'scale_info::94',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::94',
],
'effects': [
'scale_info::242',
],
'reserve': 'scale_info::95',
},
'InitiateTeleport': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'effects': [
'scale_info::242',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'query_id': 'u64',
},
},
],
},
'TeleportAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::79',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::95',
},
'AllConcreteNonFungible': {
'class': 'scale_info::95',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::95',
},
'ConcreteNonFungible': {
'class': 'scale_info::95',
'instance': 'scale_info::79',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::94',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::240',
],
},
'DepositAsset': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
},
'DepositReserveAsset': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'effects': [
'scale_info::242',
],
},
'ExchangeAsset': {
'give': [
'scale_info::94',
],
'receive': [
'scale_info::94',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::94',
],
'effects': [
'scale_info::242',
],
'reserve': 'scale_info::95',
},
'InitiateTeleport': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'effects': [
'scale_info::242',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'query_id': 'u64',
},
},
],
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::79',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::95',
},
'AllConcreteNonFungible': {
'class': 'scale_info::95',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::95',
},
'ConcreteNonFungible': {
'class': 'scale_info::95',
'instance': 'scale_info::79',
},
'None': None,
},
],
'dest': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'TransferReserveAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::79',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::95',
},
'AllConcreteNonFungible': {
'class': 'scale_info::95',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::95',
},
'ConcreteNonFungible': {
'class': 'scale_info::95',
'instance': 'scale_info::79',
},
'None': None,
},
],
'dest': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::94',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::240',
],
},
'DepositAsset': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
},
'DepositReserveAsset': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'effects': [
'scale_info::242',
],
},
'ExchangeAsset': {
'give': [
'scale_info::94',
],
'receive': [
'scale_info::94',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::94',
],
'effects': [
'scale_info::242',
],
'reserve': 'scale_info::95',
},
'InitiateTeleport': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'effects': [
'scale_info::242',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'query_id': 'u64',
},
},
],
},
'WithdrawAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::79',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::95',
},
'AllConcreteNonFungible': {
'class': 'scale_info::95',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::95',
},
'ConcreteNonFungible': {
'class': 'scale_info::95',
'instance': 'scale_info::79',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::94',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::240',
],
},
'DepositAsset': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
},
'DepositReserveAsset': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'effects': [
'scale_info::242',
],
},
'ExchangeAsset': {
'give': [
'scale_info::94',
],
'receive': [
'scale_info::94',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::94',
],
'effects': [
'scale_info::242',
],
'reserve': 'scale_info::95',
},
'InitiateTeleport': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'effects': [
'scale_info::242',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::94',
],
'dest': 'scale_info::95',
'query_id': 'u64',
},
},
],
},
},
'V1': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::76',
],
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': {
'assets': [
{
'fun': 'scale_info::78',
'id': 'scale_info::77',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::76',
'halt_on_error': 'bool',
'instructions': [
'scale_info::245',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::87',
'beneficiary': 'scale_info::61',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'effects': [
'scale_info::247',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::87',
'receive': [
'scale_info::76',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::87',
'effects': [
'scale_info::247',
],
'reserve': 'scale_info::61',
},
'InitiateTeleport': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'effects': [
'scale_info::247',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'query_id': 'u64',
},
},
],
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::76',
],
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': {
'assets': [
'scale_info::76',
],
'effects': [
'scale_info::247',
],
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': 'InnerStruct',
'HrmpChannelClosing': 'InnerStruct',
'HrmpNewChannelOpenRequest': 'InnerStruct',
'QueryResponse': 'InnerStruct',
'ReceiveTeleportedAsset': 'InnerStruct',
'RelayedFrom': 'InnerStruct',
'ReserveAssetDeposited': 'InnerStruct',
'SubscribeVersion': 'InnerStruct',
'Transact': 'InnerStruct',
'TransferAsset': 'InnerStruct',
'TransferReserveAsset': 'InnerStruct',
'UnsubscribeVersion': None,
'WithdrawAsset': 'InnerStruct',
},
'who': {
'Here': None,
'X1': 'scale_info::63',
'X2': (
'scale_info::63',
'scale_info::63',
),
'X3': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X4': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X5': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X6': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X7': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X8': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
},
},
'ReserveAssetDeposited': {
'assets': [
'scale_info::76',
],
'effects': [
'scale_info::247',
],
},
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::76',
],
'beneficiary': {
'interior': 'scale_info::62',
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::76',
],
'dest': {
'interior': 'scale_info::62',
'parents': 'u8',
},
'effects': [
'scale_info::247',
],
},
'UnsubscribeVersion': None,
'WithdrawAsset': {
'assets': [
'scale_info::76',
],
'effects': [
'scale_info::247',
],
},
},
'who': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
},
},
'ReserveAssetDeposited': {
'assets': [
{
'fun': 'scale_info::78',
'id': 'scale_info::77',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::76',
'halt_on_error': 'bool',
'instructions': [
'scale_info::245',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::87',
'beneficiary': 'scale_info::61',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'effects': [
'scale_info::247',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::87',
'receive': [
'scale_info::76',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::87',
'effects': [
'scale_info::247',
],
'reserve': 'scale_info::61',
},
'InitiateTeleport': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'effects': [
'scale_info::247',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'query_id': 'u64',
},
},
],
},
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
{
'fun': 'scale_info::78',
'id': 'scale_info::77',
},
],
'beneficiary': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::63',
'scale_info::63',
),
'X3': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X4': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X5': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X6': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X7': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X8': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
},
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
{
'fun': 'scale_info::78',
'id': 'scale_info::77',
},
],
'dest': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::63',
'scale_info::63',
),
'X3': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X4': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X5': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X6': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X7': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X8': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
},
'parents': 'u8',
},
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::76',
'halt_on_error': 'bool',
'instructions': [
'scale_info::245',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::87',
'beneficiary': 'scale_info::61',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'effects': [
'scale_info::247',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::87',
'receive': [
'scale_info::76',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::87',
'effects': [
'scale_info::247',
],
'reserve': 'scale_info::61',
},
'InitiateTeleport': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'effects': [
'scale_info::247',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'query_id': 'u64',
},
},
],
},
'UnsubscribeVersion': None,
'WithdrawAsset': {
'assets': [
{
'fun': 'scale_info::78',
'id': 'scale_info::77',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::76',
'halt_on_error': 'bool',
'instructions': [
'scale_info::245',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::87',
'beneficiary': 'scale_info::61',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'effects': [
'scale_info::247',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::87',
'receive': [
'scale_info::76',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::87',
'effects': [
'scale_info::247',
],
'reserve': 'scale_info::61',
},
'InitiateTeleport': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'effects': [
'scale_info::247',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::87',
'dest': 'scale_info::61',
'query_id': 'u64',
},
},
],
},
},
'V2': [
{
'BuyExecution': {
'fees': {
'fun': 'scale_info::78',
'id': 'scale_info::77',
},
'weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
},
'ClaimAsset': {
'assets': [
'scale_info::76',
],
'ticket': {
'interior': 'scale_info::62',
'parents': 'u8',
},
},
'ClearError': None,
'ClearOrigin': None,
'DepositAsset': {
'assets': {
'Definite': [
'scale_info::76',
],
'Wild': 'scale_info::88',
},
'beneficiary': {
'interior': 'scale_info::62',
'parents': 'u8',
},
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': {
'Definite': [
'scale_info::76',
],
'Wild': 'scale_info::88',
},
'dest': {
'interior': 'scale_info::62',
'parents': 'u8',
},
'max_assets': 'u32',
'xcm': [
'scale_info::73',
],
},
'DescendOrigin': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::63',
'scale_info::63',
),
'X3': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X4': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X5': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X6': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X7': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X8': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
},
'ExchangeAsset': {
'give': {
'Definite': [
'scale_info::76',
],
'Wild': 'scale_info::88',
},
'receive': [
'scale_info::76',
],
},
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'InitiateReserveWithdraw': {
'assets': {
'Definite': [
'scale_info::76',
],
'Wild': 'scale_info::88',
},
'reserve': {
'interior': 'scale_info::62',
'parents': 'u8',
},
'xcm': [
'scale_info::73',
],
},
'InitiateTeleport': {
'assets': {
'Definite': [
'scale_info::76',
],
'Wild': 'scale_info::88',
},
'dest': {
'interior': 'scale_info::62',
'parents': 'u8',
},
'xcm': [
'scale_info::73',
],
},
'QueryHolding': {
'assets': {
'Definite': [
'scale_info::76',
],
'Wild': 'scale_info::88',
},
'dest': {
'interior': 'scale_info::62',
'parents': 'u8',
},
'max_response_weight': 'u64',
'query_id': 'u64',
},
'QueryResponse': {
'max_weight': 'u64',
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::76',
],
'ExecutionResult': (
None,
(
'u32',
'scale_info::56',
),
),
'Null': None,
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': [
'scale_info::76',
],
'RefundSurplus': None,
'ReportError': {
'dest': {
'interior': 'scale_info::62',
'parents': 'u8',
},
'max_response_weight': 'u64',
'query_id': 'u64',
},
'ReserveAssetDeposited': [
'scale_info::76',
],
'SetAppendix': [
'scale_info::73',
],
'SetErrorHandler': [
'scale_info::73',
],
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::76',
],
'beneficiary': {
'interior': 'scale_info::62',
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::76',
],
'dest': {
'interior': 'scale_info::62',
'parents': 'u8',
},
'xcm': [
'scale_info::73',
],
},
'Trap': 'u64',
'UnsubscribeVersion': None,
'WithdrawAsset': [
'scale_info::76',
],
},
],
},
}
)
teleport_assets¶
Teleport some assets from the local chain to some destination chain.
Fee payment on the destination side is made from the asset in the assets vector of
index fee_asset_item. The weight limit for fees is not provided and thus is unlimited,
with all fees taken as needed from the asset.
origin: Must be capable of withdrawing theassetsand executing XCM.dest: Destination context for the assets. Will typically beX2(Parent, Parachain(..))to send from parachain to parachain, orX1(Parachain(..))to send from relay to parachain.beneficiary: A beneficiary location for the assets in the context ofdest. Will generally be anAccountId32value.assets: The assets to be withdrawn. The first item should be the currency used to to pay the fee on thedestside. May not be empty.fee_asset_item: The index intoassetsof the item which should be used to pay fees.
Attributes¶
| Name | Type |
|---|---|
| dest | Box<VersionedMultiLocation> |
| beneficiary | Box<VersionedMultiLocation> |
| assets | Box<VersionedMultiAssets> |
| fee_asset_item | u32 |
Python¶
call = substrate.compose_call(
'PolkadotXcm', 'teleport_assets', {
'assets': {
'V0': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::96',
'scale_info::96',
),
'X3': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
},
'AllConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::96',
'scale_info::96',
),
'X3': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::96',
'scale_info::96',
),
'X3': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
},
'ConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::96',
'scale_info::96',
),
'X3': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'None': None,
},
],
'V1': [
{
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': 'scale_info::62',
'parents': 'u8',
},
},
},
],
},
'beneficiary': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
},
'parents': 'u8',
},
},
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
},
'parents': 'u8',
},
},
'fee_asset_item': 'u32',
}
)
Events¶
AssetsClaimed¶
Some assets have been claimed from an asset trap
[ hash, origin, assets ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | H256 |
[u8; 32] |
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}})}} |
| None | VersionedMultiAssets |
{'V0': [{'None': None, 'All': None, 'AllFungible': None, 'AllNonFungible': None, 'AllAbstractFungible': {'id': 'Bytes'}, 'AllAbstractNonFungible': {'class': 'Bytes'}, 'AllConcreteFungible': {'id': {'Null': None, 'X1': 'scale_info::96', 'X2': ('scale_info::96', 'scale_info::96'), 'X3': ('scale_info::96', 'scale_info::96', 'scale_info::96'), 'X4': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X5': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X6': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X7': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X8': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96')}}, 'AllConcreteNonFungible': {'class': {'Null': None, 'X1': 'scale_info::96', 'X2': ('scale_info::96', 'scale_info::96'), 'X3': ('scale_info::96', 'scale_info::96', 'scale_info::96'), 'X4': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X5': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X6': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X7': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X8': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96')}}, 'AbstractFungible': {'id': 'Bytes', 'amount': 'u128'}, 'AbstractNonFungible': {'class': 'Bytes', 'instance': {'Undefined': None, 'Index': 'u128', 'Array4': '[u8; 4]', 'Array8': '[u8; 8]', 'Array16': '[u8; 16]', 'Array32': '[u8; 32]', 'Blob': 'Bytes'}}, 'ConcreteFungible': {'id': {'Null': None, 'X1': 'scale_info::96', 'X2': ('scale_info::96', 'scale_info::96'), 'X3': ('scale_info::96', 'scale_info::96', 'scale_info::96'), 'X4': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X5': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X6': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X7': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X8': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96')}, 'amount': 'u128'}, 'ConcreteNonFungible': {'class': {'Null': None, 'X1': 'scale_info::96', 'X2': ('scale_info::96', 'scale_info::96'), 'X3': ('scale_info::96', 'scale_info::96', 'scale_info::96'), 'X4': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X5': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X6': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X7': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X8': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96')}, 'instance': {'Undefined': None, 'Index': 'u128', 'Array4': '[u8; 4]', 'Array8': '[u8; 8]', 'Array16': '[u8; 16]', 'Array32': '[u8; 32]', 'Blob': 'Bytes'}}}], 'V1': [{'id': {'Concrete': 'scale_info::61', 'Abstract': 'Bytes'}, 'fun': {'Fungible': 'u128', 'NonFungible': 'scale_info::79'}}]} |
AssetsTrapped¶
Some assets have been placed in an asset trap.
[ hash, origin, assets ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | H256 |
[u8; 32] |
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}})}} |
| None | VersionedMultiAssets |
{'V0': [{'None': None, 'All': None, 'AllFungible': None, 'AllNonFungible': None, 'AllAbstractFungible': {'id': 'Bytes'}, 'AllAbstractNonFungible': {'class': 'Bytes'}, 'AllConcreteFungible': {'id': {'Null': None, 'X1': 'scale_info::96', 'X2': ('scale_info::96', 'scale_info::96'), 'X3': ('scale_info::96', 'scale_info::96', 'scale_info::96'), 'X4': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X5': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X6': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X7': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X8': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96')}}, 'AllConcreteNonFungible': {'class': {'Null': None, 'X1': 'scale_info::96', 'X2': ('scale_info::96', 'scale_info::96'), 'X3': ('scale_info::96', 'scale_info::96', 'scale_info::96'), 'X4': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X5': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X6': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X7': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X8': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96')}}, 'AbstractFungible': {'id': 'Bytes', 'amount': 'u128'}, 'AbstractNonFungible': {'class': 'Bytes', 'instance': {'Undefined': None, 'Index': 'u128', 'Array4': '[u8; 4]', 'Array8': '[u8; 8]', 'Array16': '[u8; 16]', 'Array32': '[u8; 32]', 'Blob': 'Bytes'}}, 'ConcreteFungible': {'id': {'Null': None, 'X1': 'scale_info::96', 'X2': ('scale_info::96', 'scale_info::96'), 'X3': ('scale_info::96', 'scale_info::96', 'scale_info::96'), 'X4': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X5': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X6': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X7': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X8': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96')}, 'amount': 'u128'}, 'ConcreteNonFungible': {'class': {'Null': None, 'X1': 'scale_info::96', 'X2': ('scale_info::96', 'scale_info::96'), 'X3': ('scale_info::96', 'scale_info::96', 'scale_info::96'), 'X4': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X5': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X6': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X7': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96'), 'X8': ('scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96', 'scale_info::96')}, 'instance': {'Undefined': None, 'Index': 'u128', 'Array4': '[u8; 4]', 'Array8': '[u8; 8]', 'Array16': '[u8; 16]', 'Array32': '[u8; 32]', 'Blob': 'Bytes'}}}], 'V1': [{'id': {'Concrete': 'scale_info::61', 'Abstract': 'Bytes'}, 'fun': {'Fungible': 'u128', 'NonFungible': 'scale_info::79'}}]} |
Attempted¶
Execution of an XCM message was attempted.
[ outcome ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | xcm::latest::Outcome |
{'Complete': 'u64', 'Incomplete': ('u64', {'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None}), 'Error': {'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None}} |
InvalidResponder¶
Expected query response has been received but the origin location of the response does not match that expected. The query remains registered for a later, valid, response to be received and acted upon.
[ origin location, id, expected location ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}})}} |
| None | QueryId |
u64 |
| None | Option<MultiLocation> |
(None, {'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, 'X2': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X3': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X4': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X5': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X6': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X7': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X8': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'})}}) |
InvalidResponderVersion¶
Expected query response has been received but the expected origin location placed in storage by this runtime previously cannot be decoded. The query remains registered.
This is unexpected (since a location placed in storage in a previously executing runtime should be readable prior to query timeout) and dangerous since the possibly valid response will be dropped. Manual governance intervention is probably going to be needed.
[ origin location, id ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}})}} |
| None | QueryId |
u64 |
Notified¶
Query response has been received and query is removed. The registered notification has been dispatched and executed successfully.
[ id, pallet index, call index ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | QueryId |
u64 |
| None | u8 |
u8 |
| None | u8 |
u8 |
NotifyDecodeFailed¶
Query response has been received and query is removed. The dispatch was unable to be
decoded into a Call; this might be due to dispatch function having a signature which
is not (origin, QueryId, Response).
[ id, pallet index, call index ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | QueryId |
u64 |
| None | u8 |
u8 |
| None | u8 |
u8 |
NotifyDispatchError¶
Query response has been received and query is removed. There was a general error with dispatching the notification call.
[ id, pallet index, call index ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | QueryId |
u64 |
| None | u8 |
u8 |
| None | u8 |
u8 |
NotifyOverweight¶
Query response has been received and query is removed. The registered notification could not be dispatched because the dispatch weight is greater than the maximum weight originally budgeted by this runtime for the query result.
[ id, pallet index, call index, actual weight, max budgeted weight ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | QueryId |
u64 |
| None | u8 |
u8 |
| None | u8 |
u8 |
| None | Weight |
{'ref_time': 'u64', 'proof_size': 'u64'} |
| None | Weight |
{'ref_time': 'u64', 'proof_size': 'u64'} |
NotifyTargetMigrationFail¶
A given location which had a version change subscription was dropped owing to an error migrating the location to our new XCM format.
[ location, query ID ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | VersionedMultiLocation |
{'V0': {'Null': None, 'X1': {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X3': ({'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X4': ({'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X5': ({'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X6': ({'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X7': ({'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X8': ({'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}})}, 'V1': {'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, 'X2': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X3': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X4': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X5': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X6': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X7': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X8': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'})}}} |
| None | QueryId |
u64 |
NotifyTargetSendFail¶
A given location which had a version change subscription was dropped owing to an error sending the notification to it.
[ location, query ID, error ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}})}} |
| None | QueryId |
u64 |
| None | XcmError |
{'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None} |
ResponseReady¶
Query response has been received and is ready for taking with take_response. There is
no registered notification call.
[ id, response ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | QueryId |
u64 |
| None | Response |
{'Null': None, 'Assets': [{'id': {'Concrete': 'scale_info::61', 'Abstract': 'Bytes'}, 'fun': {'Fungible': 'u128', 'NonFungible': 'scale_info::79'}}], 'ExecutionResult': (None, ('u32', {'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None})), 'Version': 'u32'} |
ResponseTaken¶
Received query response has been read and removed.
[ id ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | QueryId |
u64 |
Sent¶
A XCM message was sent.
[ origin, destination, message ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}})}} |
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}})}} |
| None | Xcm<()> |
[{'WithdrawAsset': ['scale_info::76'], 'ReserveAssetDeposited': ['scale_info::76'], 'ReceiveTeleportedAsset': ['scale_info::76'], 'QueryResponse': {'query_id': 'u64', 'response': {'Null': None, 'Assets': ['scale_info::76'], 'ExecutionResult': (None, ('u32', 'scale_info::56')), 'Version': 'u32'}, 'max_weight': 'u64'}, 'TransferAsset': {'assets': ['scale_info::76'], 'beneficiary': {'parents': 'u8', 'interior': 'scale_info::62'}}, 'TransferReserveAsset': {'assets': ['scale_info::76'], 'dest': {'parents': 'u8', 'interior': 'scale_info::62'}, 'xcm': ['scale_info::73']}, 'Transact': {'origin_type': ('Native', 'SovereignAccount', 'Superuser', 'Xcm'), 'require_weight_at_most': 'u64', 'call': {'encoded': 'Bytes'}}, 'HrmpNewChannelOpenRequest': {'sender': 'u32', 'max_message_size': 'u32', 'max_capacity': 'u32'}, 'HrmpChannelAccepted': {'recipient': 'u32'}, 'HrmpChannelClosing': {'initiator': 'u32', 'sender': 'u32', 'recipient': 'u32'}, 'ClearOrigin': None, 'DescendOrigin': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, 'X2': ('scale_info::63', 'scale_info::63'), 'X3': ('scale_info::63', 'scale_info::63', 'scale_info::63'), 'X4': ('scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63'), 'X5': ('scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63'), 'X6': ('scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63'), 'X7': ('scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63'), 'X8': ('scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63')}, 'ReportError': {'query_id': 'u64', 'dest': {'parents': 'u8', 'interior': 'scale_info::62'}, 'max_response_weight': 'u64'}, 'DepositAsset': {'assets': {'Definite': ['scale_info::76'], 'Wild': 'scale_info::88'}, 'max_assets': 'u32', 'beneficiary': {'parents': 'u8', 'interior': 'scale_info::62'}}, 'DepositReserveAsset': {'assets': {'Definite': ['scale_info::76'], 'Wild': 'scale_info::88'}, 'max_assets': 'u32', 'dest': {'parents': 'u8', 'interior': 'scale_info::62'}, 'xcm': ['scale_info::73']}, 'ExchangeAsset': {'give': {'Definite': ['scale_info::76'], 'Wild': 'scale_info::88'}, 'receive': ['scale_info::76']}, 'InitiateReserveWithdraw': {'assets': {'Definite': ['scale_info::76'], 'Wild': 'scale_info::88'}, 'reserve': {'parents': 'u8', 'interior': 'scale_info::62'}, 'xcm': ['scale_info::73']}, 'InitiateTeleport': {'assets': {'Definite': ['scale_info::76'], 'Wild': 'scale_info::88'}, 'dest': {'parents': 'u8', 'interior': 'scale_info::62'}, 'xcm': ['scale_info::73']}, 'QueryHolding': {'query_id': 'u64', 'dest': {'parents': 'u8', 'interior': 'scale_info::62'}, 'assets': {'Definite': ['scale_info::76'], 'Wild': 'scale_info::88'}, 'max_response_weight': 'u64'}, 'BuyExecution': {'fees': {'id': 'scale_info::77', 'fun': 'scale_info::78'}, 'weight_limit': {'Unlimited': None, 'Limited': 'u64'}}, 'RefundSurplus': None, 'SetErrorHandler': ['scale_info::73'], 'SetAppendix': ['scale_info::73'], 'ClearError': None, 'ClaimAsset': {'assets': ['scale_info::76'], 'ticket': {'parents': 'u8', 'interior': 'scale_info::62'}}, 'Trap': 'u64', 'SubscribeVersion': {'query_id': 'u64', 'max_response_weight': 'u64'}, 'UnsubscribeVersion': None}] |
SupportedVersionChanged¶
The supported version of a location has been changed. This might be through an automatic notification or a manual intervention.
[ location, XCM version ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}})}} |
| None | XcmVersion |
u32 |
UnexpectedResponse¶
Query response received which does not match a registered query. This may be because a matching query was never registered, it may be because it is a duplicate response, or because the query timed out.
[ origin location, id ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}})}} |
| None | QueryId |
u64 |
VersionChangeNotified¶
An XCM version change notification message has been attempted to be sent.
[ destination, result ]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}})}} |
| None | XcmVersion |
u32 |
Storage functions¶
AssetTraps¶
The existing asset traps.
Key is the blake2 256 hash of (origin, versioned MultiAssets) pair. Value is the number of
times this pair has been trapped (usually just 1 if it exists at all).
Python¶
result = substrate.query(
'PolkadotXcm', 'AssetTraps', ['[u8; 32]']
)
Return value¶
'u32'
CurrentMigration¶
The current migration's stage, if any.
Python¶
result = substrate.query(
'PolkadotXcm', 'CurrentMigration', []
)
Return value¶
{
'MigrateAndNotifyOldTargets': None,
'MigrateSupportedVersion': None,
'MigrateVersionNotifiers': None,
'NotifyCurrentTargets': (None, 'Bytes'),
}
Queries¶
The ongoing queries.
Python¶
result = substrate.query(
'PolkadotXcm', 'Queries', ['u64']
)
Return value¶
{
'Pending': {
'maybe_notify': (None, ('u8', 'u8')),
'responder': {
'V0': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': ('scale_info::96', 'scale_info::96'),
'X3': ('scale_info::96', 'scale_info::96', 'scale_info::96'),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
'V1': {
'interior': {
'Here': None,
'X1': 'scale_info::63',
'X2': ('scale_info::63', 'scale_info::63'),
'X3': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X4': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X5': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X6': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X7': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X8': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
},
'parents': 'u8',
},
},
'timeout': 'u32',
},
'Ready': {
'at': 'u32',
'response': {
'V0': {'Assets': ['scale_info::94']},
'V1': {'Assets': ['scale_info::76'], 'Version': 'u32'},
'V2': {
'Assets': ['scale_info::76'],
'ExecutionResult': (None, ('u32', 'scale_info::56')),
'Null': None,
'Version': 'u32',
},
},
},
'VersionNotifier': {
'is_active': 'bool',
'origin': {
'V0': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': ('scale_info::96', 'scale_info::96'),
'X3': ('scale_info::96', 'scale_info::96', 'scale_info::96'),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
'V1': {
'interior': {
'Here': None,
'X1': 'scale_info::63',
'X2': ('scale_info::63', 'scale_info::63'),
'X3': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X4': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X5': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X6': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X7': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X8': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
},
'parents': 'u8',
},
},
},
}
QueryCounter¶
The latest available query index.
Python¶
result = substrate.query(
'PolkadotXcm', 'QueryCounter', []
)
Return value¶
'u64'
SafeXcmVersion¶
Default version to encode XCM when latest version of destination is unknown. If None,
then the destinations whose XCM version is unknown are considered unreachable.
Python¶
result = substrate.query(
'PolkadotXcm', 'SafeXcmVersion', []
)
Return value¶
'u32'
SupportedVersion¶
The Latest versions that we know various locations support.
Python¶
result = substrate.query(
'PolkadotXcm', 'SupportedVersion', [
'u32',
{
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
},
'parents': 'u8',
},
},
]
)
Return value¶
'u32'
VersionDiscoveryQueue¶
Destinations whose latest XCM version we would like to know. Duplicates not allowed, and
the u32 counter is the number of times that a send to the destination has been attempted,
which is used as a prioritization.
Python¶
result = substrate.query(
'PolkadotXcm', 'VersionDiscoveryQueue', []
)
Return value¶
[
(
{
'V0': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': ('scale_info::96', 'scale_info::96'),
'X3': ('scale_info::96', 'scale_info::96', 'scale_info::96'),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
'V1': {
'interior': {
'Here': None,
'X1': 'scale_info::63',
'X2': ('scale_info::63', 'scale_info::63'),
'X3': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X4': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X5': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X6': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X7': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X8': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
},
'parents': 'u8',
},
},
'u32',
),
]
VersionNotifiers¶
All locations that we have requested version notifications from.
Python¶
result = substrate.query(
'PolkadotXcm', 'VersionNotifiers', [
'u32',
{
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
},
'parents': 'u8',
},
},
]
)
Return value¶
'u64'
VersionNotifyTargets¶
The target locations that are subscribed to our version changes, as well as the most recent of our versions we informed them of.
Python¶
result = substrate.query(
'PolkadotXcm', 'VersionNotifyTargets', [
'u32',
{
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
},
'parents': 'u8',
},
},
]
)
Return value¶
('u64', 'u64', 'u32')
Errors¶
AlreadySubscribed¶
The location is invalid since it already has a subscription from us.
BadLocation¶
The given location could not be used (e.g. because it cannot be expressed in the desired version of XCM).
BadVersion¶
The version of the Versioned value used is not able to be interpreted.
CannotReanchor¶
Could not re-anchor the assets to declare the fees for the destination chain.
DestinationNotInvertible¶
The destination MultiLocation provided cannot be inverted.
Empty¶
The assets to be sent are empty.
Filtered¶
The message execution fails the filter.
InvalidOrigin¶
Origin is invalid for sending.
NoSubscription¶
The referenced subscription could not be found.
SendFailure¶
There was some other issue (i.e. not to do with routing) in sending the message. Perhaps a lack of space for buffering the message.
TooManyAssets¶
Too many assets have been attempted for transfer.
Unreachable¶
The desired destination was unreachable, generally because there is a no way of routing to it.
UnweighableMessage¶
The message's weight could not be determined.
Preimage¶
Calls¶
note_preimage¶
Register a preimage on-chain.
If the preimage was previously requested, no fees or deposits are taken for providing the preimage. Otherwise, a deposit is taken proportional to the size of the preimage.
Attributes¶
| Name | Type |
|---|---|
| bytes | Vec<u8> |
Python¶
call = substrate.compose_call(
'Preimage', 'note_preimage', {'bytes': 'Bytes'}
)
request_preimage¶
Request a preimage be uploaded to the chain without paying any fees or deposits.
If the preimage requests has already been provided on-chain, we unreserve any deposit a user may have paid, and take the control of the preimage out of their hands.
Attributes¶
| Name | Type |
|---|---|
| hash | T::Hash |
Python¶
call = substrate.compose_call(
'Preimage', 'request_preimage', {'hash': '[u8; 32]'}
)
unnote_preimage¶
Clear an unrequested preimage from the runtime storage.
If len is provided, then it will be a much cheaper operation.
hash: The hash of the preimage to be removed from the store.len: The length of the preimage ofhash.
Attributes¶
| Name | Type |
|---|---|
| hash | T::Hash |
Python¶
call = substrate.compose_call(
'Preimage', 'unnote_preimage', {'hash': '[u8; 32]'}
)
unrequest_preimage¶
Clear a previously made request for a preimage.
NOTE: THIS MUST NOT BE CALLED ON hash MORE TIMES THAN request_preimage.
Attributes¶
| Name | Type |
|---|---|
| hash | T::Hash |
Python¶
call = substrate.compose_call(
'Preimage', 'unrequest_preimage', {'hash': '[u8; 32]'}
)
Events¶
Cleared¶
A preimage has ben cleared.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| hash | T::Hash |
[u8; 32] |
Noted¶
A preimage has been noted.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| hash | T::Hash |
[u8; 32] |
Requested¶
A preimage has been requested.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| hash | T::Hash |
[u8; 32] |
Storage functions¶
PreimageFor¶
Python¶
result = substrate.query(
'Preimage', 'PreimageFor', [('[u8; 32]', 'u32')]
)
Return value¶
'Bytes'
StatusFor¶
The request status of a given hash.
Python¶
result = substrate.query(
'Preimage', 'StatusFor', ['[u8; 32]']
)
Return value¶
{
'Requested': {
'count': 'u32',
'deposit': (None, ('AccountId', 'u128')),
'len': (None, 'u32'),
},
'Unrequested': {'deposit': ('AccountId', 'u128'), 'len': 'u32'},
}
Errors¶
AlreadyNoted¶
Preimage has already been noted on-chain.
NotAuthorized¶
The user is not authorized to perform this action.
NotNoted¶
The preimage cannot be removed since it has not yet been noted.
NotRequested¶
The preimage request cannot be removed since no outstanding requests exist.
Requested¶
A preimage may not be removed when there are outstanding requests.
TooBig¶
Preimage is too large to store on-chain.
Prices¶
Calls¶
reset_price¶
Reset emergency price
Attributes¶
| Name | Type |
|---|---|
| asset_id | CurrencyId |
Python¶
call = substrate.compose_call(
'Prices', 'reset_price', {'asset_id': 'u32'}
)
set_foreign_asset¶
Set foreign vault token mapping
Attributes¶
| Name | Type |
|---|---|
| foreign_asset_id | CurrencyId |
| asset_id | CurrencyId |
Python¶
call = substrate.compose_call(
'Prices', 'set_foreign_asset', {
'asset_id': 'u32',
'foreign_asset_id': 'u32',
}
)
set_price¶
Set emergency price
Attributes¶
| Name | Type |
|---|---|
| asset_id | CurrencyId |
| price | Price |
Python¶
call = substrate.compose_call(
'Prices', 'set_price', {'asset_id': 'u32', 'price': 'u128'}
)
Events¶
ResetPrice¶
Reset emergency price. [asset_id]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | CurrencyId |
u32 |
SetPrice¶
Set emergency price. [asset_id, price_detail]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | CurrencyId |
u32 |
| None | Price |
u128 |
Storage functions¶
EmergencyPrice¶
Mapping from currency id to it's emergency price
Python¶
result = substrate.query(
'Prices', 'EmergencyPrice', ['u32']
)
Return value¶
'u128'
ForeignToNativeAsset¶
Mapping from foreign vault token to our's vault token
Python¶
result = substrate.query(
'Prices', 'ForeignToNativeAsset', ['u32']
)
Return value¶
'u32'
Constants¶
RelayCurrency¶
Relay currency
Value¶
101
Python¶
constant = substrate.get_constant('Prices', 'RelayCurrency')
Proxy¶
Calls¶
add_proxy¶
Register a proxy account for the sender that is able to make calls on its behalf.
The dispatch origin for this call must be Signed.
Parameters:
- proxy: The account that the caller would like to make a proxy.
- proxy_type: The permissions allowed for this proxy account.
- delay: The announcement period required of the initial proxy. Will generally be
zero.
Attributes¶
| Name | Type |
|---|---|
| delegate | AccountIdLookupOf<T> |
| proxy_type | T::ProxyType |
| delay | T::BlockNumber |
Python¶
call = substrate.compose_call(
'Proxy', 'add_proxy', {
'delay': 'u32',
'delegate': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'proxy_type': (
'Any',
'Loans',
'Staking',
'Crowdloans',
'Farming',
'Streaming',
'Governance',
'AMM',
),
}
)
announce¶
Publish the hash of a proxy-call that will be made in the future.
This must be called some number of blocks before the corresponding proxy is attempted
if the delay associated with the proxy relationship is greater than zero.
No more than MaxPending announcements may be made at any one time.
This will take a deposit of AnnouncementDepositFactor as well as
AnnouncementDepositBase if there are no other pending announcements.
The dispatch origin for this call must be Signed and a proxy of real.
Parameters:
- real: The account that the proxy will make a call on behalf of.
- call_hash: The hash of the call to be made by the real account.
Attributes¶
| Name | Type |
|---|---|
| real | AccountIdLookupOf<T> |
| call_hash | CallHashOf<T> |
Python¶
call = substrate.compose_call(
'Proxy', 'announce', {
'call_hash': '[u8; 32]',
'real': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
create_pure¶
Spawn a fresh new account that is guaranteed to be otherwise inaccessible, and
initialize it with a proxy of proxy_type for origin sender.
Requires a Signed origin.
proxy_type: The type of the proxy that the sender will be registered as over the new account. This will almost always be the most permissiveProxyTypepossible to allow for maximum flexibility.index: A disambiguation index, in case this is called multiple times in the same transaction (e.g. withutility::batch). Unless you're usingbatchyou probably just want to use0.delay: The announcement period required of the initial proxy. Will generally be zero.
Fails with Duplicate if this has already been called in this transaction, from the
same sender, with the same parameters.
Fails if there are insufficient funds to pay for deposit.
Attributes¶
| Name | Type |
|---|---|
| proxy_type | T::ProxyType |
| delay | T::BlockNumber |
| index | u16 |
Python¶
call = substrate.compose_call(
'Proxy', 'create_pure', {
'delay': 'u32',
'index': 'u16',
'proxy_type': (
'Any',
'Loans',
'Staking',
'Crowdloans',
'Farming',
'Streaming',
'Governance',
'AMM',
),
}
)
kill_pure¶
Removes a previously spawned pure proxy.
WARNING: All access to this account will be lost. Any funds held in it will be inaccessible.
Requires a Signed origin, and the sender account must have been created by a call to
pure with corresponding parameters.
spawner: The account that originally calledpureto create this account.index: The disambiguation index originally passed topure. Probably0.proxy_type: The proxy type originally passed topure.height: The height of the chain when the call topurewas processed.ext_index: The extrinsic index in which the call topurewas processed.
Fails with NoPermission in case the caller is not a previously created pure
account whose pure call has corresponding parameters.
Attributes¶
| Name | Type |
|---|---|
| spawner | AccountIdLookupOf<T> |
| proxy_type | T::ProxyType |
| index | u16 |
| height | T::BlockNumber |
| ext_index | u32 |
Python¶
call = substrate.compose_call(
'Proxy', 'kill_pure', {
'ext_index': 'u32',
'height': 'u32',
'index': 'u16',
'proxy_type': (
'Any',
'Loans',
'Staking',
'Crowdloans',
'Farming',
'Streaming',
'Governance',
'AMM',
),
'spawner': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
proxy¶
Dispatch the given call from an account that the sender is authorised for through
add_proxy.
Removes any corresponding announcement(s).
The dispatch origin for this call must be Signed.
Parameters:
- real: The account that the proxy will make a call on behalf of.
- force_proxy_type: Specify the exact proxy type to be used and checked for this call.
- call: The call to be made by the real account.
Attributes¶
| Name | Type |
|---|---|
| real | AccountIdLookupOf<T> |
| force_proxy_type | Option<T::ProxyType> |
| call | Box<<T as Config>::RuntimeCall> |
Python¶
call = substrate.compose_call(
'Proxy', 'proxy', {
'call': 'Call',
'force_proxy_type': (
None,
(
'Any',
'Loans',
'Staking',
'Crowdloans',
'Farming',
'Streaming',
'Governance',
'AMM',
),
),
'real': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
proxy_announced¶
Dispatch the given call from an account that the sender is authorized for through
add_proxy.
Removes any corresponding announcement(s).
The dispatch origin for this call must be Signed.
Parameters:
- real: The account that the proxy will make a call on behalf of.
- force_proxy_type: Specify the exact proxy type to be used and checked for this call.
- call: The call to be made by the real account.
Attributes¶
| Name | Type |
|---|---|
| delegate | AccountIdLookupOf<T> |
| real | AccountIdLookupOf<T> |
| force_proxy_type | Option<T::ProxyType> |
| call | Box<<T as Config>::RuntimeCall> |
Python¶
call = substrate.compose_call(
'Proxy', 'proxy_announced', {
'call': 'Call',
'delegate': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'force_proxy_type': (
None,
(
'Any',
'Loans',
'Staking',
'Crowdloans',
'Farming',
'Streaming',
'Governance',
'AMM',
),
),
'real': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
reject_announcement¶
Remove the given announcement of a delegate.
May be called by a target (proxied) account to remove a call that one of their delegates
(delegate) has announced they want to execute. The deposit is returned.
The dispatch origin for this call must be Signed.
Parameters:
- delegate: The account that previously announced the call.
- call_hash: The hash of the call to be made.
Attributes¶
| Name | Type |
|---|---|
| delegate | AccountIdLookupOf<T> |
| call_hash | CallHashOf<T> |
Python¶
call = substrate.compose_call(
'Proxy', 'reject_announcement', {
'call_hash': '[u8; 32]',
'delegate': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
remove_announcement¶
Remove a given announcement.
May be called by a proxy account to remove a call they previously announced and return the deposit.
The dispatch origin for this call must be Signed.
Parameters:
- real: The account that the proxy will make a call on behalf of.
- call_hash: The hash of the call to be made by the real account.
Attributes¶
| Name | Type |
|---|---|
| real | AccountIdLookupOf<T> |
| call_hash | CallHashOf<T> |
Python¶
call = substrate.compose_call(
'Proxy', 'remove_announcement', {
'call_hash': '[u8; 32]',
'real': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
remove_proxies¶
Unregister all proxy accounts for the sender.
The dispatch origin for this call must be Signed.
WARNING: This may be called on accounts created by pure, however if done, then
the unreserved fees will be inaccessible. All access to this account will be lost.
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'Proxy', 'remove_proxies', {}
)
remove_proxy¶
Unregister a proxy account for the sender.
The dispatch origin for this call must be Signed.
Parameters:
- proxy: The account that the caller would like to remove as a proxy.
- proxy_type: The permissions currently enabled for the removed proxy account.
Attributes¶
| Name | Type |
|---|---|
| delegate | AccountIdLookupOf<T> |
| proxy_type | T::ProxyType |
| delay | T::BlockNumber |
Python¶
call = substrate.compose_call(
'Proxy', 'remove_proxy', {
'delay': 'u32',
'delegate': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'proxy_type': (
'Any',
'Loans',
'Staking',
'Crowdloans',
'Farming',
'Streaming',
'Governance',
'AMM',
),
}
)
Events¶
Announced¶
An announcement was placed to make a call in the future.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| real | T::AccountId |
AccountId |
| proxy | T::AccountId |
AccountId |
| call_hash | CallHashOf<T> |
[u8; 32] |
ProxyAdded¶
A proxy was added.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| delegator | T::AccountId |
AccountId |
| delegatee | T::AccountId |
AccountId |
| proxy_type | T::ProxyType |
('Any', 'Loans', 'Staking', 'Crowdloans', 'Farming', 'Streaming', 'Governance', 'AMM') |
| delay | T::BlockNumber |
u32 |
ProxyExecuted¶
A proxy was executed correctly, with the given.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None}} |
ProxyRemoved¶
A proxy was removed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| delegator | T::AccountId |
AccountId |
| delegatee | T::AccountId |
AccountId |
| proxy_type | T::ProxyType |
('Any', 'Loans', 'Staking', 'Crowdloans', 'Farming', 'Streaming', 'Governance', 'AMM') |
| delay | T::BlockNumber |
u32 |
PureCreated¶
A pure account has been created by new proxy with given disambiguation index and proxy type.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| pure | T::AccountId |
AccountId |
| who | T::AccountId |
AccountId |
| proxy_type | T::ProxyType |
('Any', 'Loans', 'Staking', 'Crowdloans', 'Farming', 'Streaming', 'Governance', 'AMM') |
| disambiguation_index | u16 |
u16 |
Storage functions¶
Announcements¶
The announcements made by the proxy (key).
Python¶
result = substrate.query(
'Proxy', 'Announcements', ['AccountId']
)
Return value¶
([{'call_hash': '[u8; 32]', 'height': 'u32', 'real': 'AccountId'}], 'u128')
Proxies¶
The set of account proxies. Maps the account which has delegated to the accounts which are being delegated to, together with the amount held on deposit.
Python¶
result = substrate.query(
'Proxy', 'Proxies', ['AccountId']
)
Return value¶
(
[
{
'delay': 'u32',
'delegate': 'AccountId',
'proxy_type': (
'Any',
'Loans',
'Staking',
'Crowdloans',
'Farming',
'Streaming',
'Governance',
'AMM',
),
},
],
'u128',
)
Constants¶
AnnouncementDepositBase¶
The base amount of currency needed to reserve for creating an announcement.
This is held when a new storage item holding a Balance is created (typically 16
bytes).
Value¶
3030000000000
Python¶
constant = substrate.get_constant('Proxy', 'AnnouncementDepositBase')
AnnouncementDepositFactor¶
The amount of currency needed per announcement made.
This is held for adding an AccountId, Hash and BlockNumber (typically 68 bytes)
into a pre-existing storage value.
Value¶
3960000000000
Python¶
constant = substrate.get_constant('Proxy', 'AnnouncementDepositFactor')
MaxPending¶
The maximum amount of time-delayed announcements that are allowed to be pending.
Value¶
32
Python¶
constant = substrate.get_constant('Proxy', 'MaxPending')
MaxProxies¶
The maximum amount of proxies allowed for a single account.
Value¶
32
Python¶
constant = substrate.get_constant('Proxy', 'MaxProxies')
ProxyDepositBase¶
The base amount of currency needed to reserve for creating a proxy.
This is held for an additional storage item whose value size is
sizeof(Balance) bytes and whose key size is sizeof(AccountId) bytes.
Value¶
2550000000000
Python¶
constant = substrate.get_constant('Proxy', 'ProxyDepositBase')
ProxyDepositFactor¶
The amount of currency needed per proxy added.
This is held for adding 32 bytes plus an instance of ProxyType more into a
pre-existing storage value. Thus, when configuring ProxyDepositFactor one should take
into account 32 + proxy_type.encode().len() bytes of data.
Value¶
1980000000000
Python¶
constant = substrate.get_constant('Proxy', 'ProxyDepositFactor')
Errors¶
Duplicate¶
Account is already a proxy.
NoPermission¶
Call may not be made by proxy because it may escalate its privileges.
NoSelfProxy¶
Cannot add self as proxy.
NotFound¶
Proxy registration not found.
NotProxy¶
Sender is not a proxy of the account to be proxied.
TooMany¶
There are too many proxies registered or too many announcements pending.
Unannounced¶
Announcement, if made at all, was made too recently.
Unproxyable¶
A call which is incompatible with the proxy type's filter was attempted.
Scheduler¶
Calls¶
cancel¶
Cancel an anonymously scheduled task.
Attributes¶
| Name | Type |
|---|---|
| when | T::BlockNumber |
| index | u32 |
Python¶
call = substrate.compose_call(
'Scheduler', 'cancel', {'index': 'u32', 'when': 'u32'}
)
cancel_named¶
Cancel a named scheduled task.
Attributes¶
| Name | Type |
|---|---|
| id | TaskName |
Python¶
call = substrate.compose_call(
'Scheduler', 'cancel_named', {'id': '[u8; 32]'}
)
schedule¶
Anonymously schedule a task.
Attributes¶
| Name | Type |
|---|---|
| when | T::BlockNumber |
| maybe_periodic | Option<schedule::Period<T::BlockNumber>> |
| priority | schedule::Priority |
| call | Box<<T as Config>::RuntimeCall> |
Python¶
call = substrate.compose_call(
'Scheduler', 'schedule', {
'call': 'Call',
'maybe_periodic': (
None,
('u32', 'u32'),
),
'priority': 'u8',
'when': 'u32',
}
)
schedule_after¶
Anonymously schedule a task after a delay.
# <weight>
Same as [schedule].
# </weight>
Attributes¶
| Name | Type |
|---|---|
| after | T::BlockNumber |
| maybe_periodic | Option<schedule::Period<T::BlockNumber>> |
| priority | schedule::Priority |
| call | Box<<T as Config>::RuntimeCall> |
Python¶
call = substrate.compose_call(
'Scheduler', 'schedule_after', {
'after': 'u32',
'call': 'Call',
'maybe_periodic': (
None,
('u32', 'u32'),
),
'priority': 'u8',
}
)
schedule_named¶
Schedule a named task.
Attributes¶
| Name | Type |
|---|---|
| id | TaskName |
| when | T::BlockNumber |
| maybe_periodic | Option<schedule::Period<T::BlockNumber>> |
| priority | schedule::Priority |
| call | Box<<T as Config>::RuntimeCall> |
Python¶
call = substrate.compose_call(
'Scheduler', 'schedule_named', {
'call': 'Call',
'id': '[u8; 32]',
'maybe_periodic': (
None,
('u32', 'u32'),
),
'priority': 'u8',
'when': 'u32',
}
)
schedule_named_after¶
Schedule a named task after a delay.
# <weight>
Same as schedule_named.
# </weight>
Attributes¶
| Name | Type |
|---|---|
| id | TaskName |
| after | T::BlockNumber |
| maybe_periodic | Option<schedule::Period<T::BlockNumber>> |
| priority | schedule::Priority |
| call | Box<<T as Config>::RuntimeCall> |
Python¶
call = substrate.compose_call(
'Scheduler', 'schedule_named_after', {
'after': 'u32',
'call': 'Call',
'id': '[u8; 32]',
'maybe_periodic': (
None,
('u32', 'u32'),
),
'priority': 'u8',
}
)
Events¶
CallUnavailable¶
The call for the provided hash was not found so the task has been aborted.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| task | TaskAddress<T::BlockNumber> |
('u32', 'u32') |
| id | Option<[u8; 32]> |
(None, '[u8; 32]') |
Canceled¶
Canceled some task.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| when | T::BlockNumber |
u32 |
| index | u32 |
u32 |
Dispatched¶
Dispatched some task.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| task | TaskAddress<T::BlockNumber> |
('u32', 'u32') |
| id | Option<[u8; 32]> |
(None, '[u8; 32]') |
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None}} |
PeriodicFailed¶
The given task was unable to be renewed since the agenda is full at that block.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| task | TaskAddress<T::BlockNumber> |
('u32', 'u32') |
| id | Option<[u8; 32]> |
(None, '[u8; 32]') |
PermanentlyOverweight¶
The given task can never be executed since it is overweight.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| task | TaskAddress<T::BlockNumber> |
('u32', 'u32') |
| id | Option<[u8; 32]> |
(None, '[u8; 32]') |
Scheduled¶
Scheduled some task.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| when | T::BlockNumber |
u32 |
| index | u32 |
u32 |
Storage functions¶
Agenda¶
Items to be executed, indexed by the block number that they should be executed on.
Python¶
result = substrate.query(
'Scheduler', 'Agenda', ['u32']
)
Return value¶
[
(
None,
{
'call': {
'Inline': 'Bytes',
'Legacy': {'hash': '[u8; 32]'},
'Lookup': {'hash': '[u8; 32]', 'len': 'u32'},
},
'maybe_id': (None, '[u8; 32]'),
'maybe_periodic': (None, ('u32', 'u32')),
'origin': {
None: None,
'CumulusXcm': {'Relay': None, 'SiblingParachain': 'u32'},
'GeneralCouncil': {
'Member': 'AccountId',
'Members': ('u32', 'u32'),
'_Phantom': None,
},
'PolkadotXcm': {
'Response': 'scale_info::61',
'Xcm': 'scale_info::61',
},
'TechnicalCommittee': {
'Member': 'AccountId',
'Members': ('u32', 'u32'),
'_Phantom': None,
},
'Void': (),
'system': {'None': None, 'Root': None, 'Signed': 'AccountId'},
},
'priority': 'u8',
},
),
]
IncompleteSince¶
Python¶
result = substrate.query(
'Scheduler', 'IncompleteSince', []
)
Return value¶
'u32'
Lookup¶
Lookup from a name to the block number and index of the task.
For v3 -> v4 the previously unbounded identities are Blake2-256 hashed to form the v4 identities.
Python¶
result = substrate.query(
'Scheduler', 'Lookup', ['[u8; 32]']
)
Return value¶
('u32', 'u32')
Constants¶
MaxScheduledPerBlock¶
The maximum number of scheduled calls in the queue for a single block.
Value¶
50
Python¶
constant = substrate.get_constant('Scheduler', 'MaxScheduledPerBlock')
MaximumWeight¶
The maximum weight that may be scheduled per block for any dispatchables.
Value¶
{'proof_size': 4194304, 'ref_time': 400000000000}
Python¶
constant = substrate.get_constant('Scheduler', 'MaximumWeight')
Errors¶
FailedToSchedule¶
Failed to schedule a call
Named¶
Attempt to use a non-named function on a named task.
NotFound¶
Cannot find the scheduled call.
RescheduleNoChange¶
Reschedule failed because it does not change scheduled time.
TargetBlockNumberInPast¶
Given target block number is in the past.
Session¶
Calls¶
purge_keys¶
Removes any session key(s) of the function caller.
This doesn't take effect until the next session.
The dispatch origin of this function must be Signed and the account must be either be convertible to a validator ID using the chain's typical addressing system (this usually means being a controller account) or directly convertible into a validator ID (which usually means being a stash account).
# <weight>
- Complexity: O(1) in number of key types. Actual cost depends on the number of length
of T::Keys::key_ids() which is fixed.
- DbReads: T::ValidatorIdOf, NextKeys, origin account
- DbWrites: NextKeys, origin account
- DbWrites per key id: KeyOwner
# </weight>
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'Session', 'purge_keys', {}
)
set_keys¶
Sets the session key(s) of the function caller to keys.
Allows an account to set its session key prior to becoming a validator.
This doesn't take effect until the next session.
The dispatch origin of this function must be signed.
# <weight>
- Complexity: O(1). Actual cost depends on the number of length of
T::Keys::key_ids() which is fixed.
- DbReads: origin account, T::ValidatorIdOf, NextKeys
- DbWrites: origin account, NextKeys
- DbReads per key id: KeyOwner
- DbWrites per key id: KeyOwner
# </weight>
Attributes¶
| Name | Type |
|---|---|
| keys | T::Keys |
| proof | Vec<u8> |
Python¶
call = substrate.compose_call(
'Session', 'set_keys', {'keys': {'aura': '[u8; 32]'}, 'proof': 'Bytes'}
)
Events¶
NewSession¶
New session has happened. Note that the argument is the session index, not the block number as the type might suggest.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| session_index | SessionIndex |
u32 |
Storage functions¶
CurrentIndex¶
Current index of the session.
Python¶
result = substrate.query(
'Session', 'CurrentIndex', []
)
Return value¶
'u32'
DisabledValidators¶
Indices of disabled validators.
The vec is always kept sorted so that we can find whether a given validator is
disabled using binary search. It gets cleared when on_session_ending returns
a new set of identities.
Python¶
result = substrate.query(
'Session', 'DisabledValidators', []
)
Return value¶
['u32']
KeyOwner¶
The owner of a key. The key is the KeyTypeId + the encoded key.
Python¶
result = substrate.query(
'Session', 'KeyOwner', [('[u8; 4]', 'Bytes')]
)
Return value¶
'AccountId'
NextKeys¶
The next session keys for a validator.
Python¶
result = substrate.query(
'Session', 'NextKeys', ['AccountId']
)
Return value¶
{'aura': '[u8; 32]'}
QueuedChanged¶
True if the underlying economic identities or weighting behind the validators has changed in the queued validator set.
Python¶
result = substrate.query(
'Session', 'QueuedChanged', []
)
Return value¶
'bool'
QueuedKeys¶
The queued keys for the next session. When the next session begins, these keys will be used to determine the validator's session keys.
Python¶
result = substrate.query(
'Session', 'QueuedKeys', []
)
Return value¶
[('AccountId', {'aura': '[u8; 32]'})]
Validators¶
The current set of validators.
Python¶
result = substrate.query(
'Session', 'Validators', []
)
Return value¶
['AccountId']
Errors¶
DuplicatedKey¶
Registered duplicate key.
InvalidProof¶
Invalid ownership proof.
NoAccount¶
Key setting account is not live, so it's impossible to associate keys.
NoAssociatedValidatorId¶
No associated validator ID for account.
NoKeys¶
No keys are associated with this account.
Streaming¶
Calls¶
cancel¶
Cancel a existed stream and return back the deposit to sender and recipient
Can only be called by the sender
stream_id: the stream id which will be canceled
Attributes¶
| Name | Type |
|---|---|
| stream_id | StreamId |
Python¶
call = substrate.compose_call(
'Streaming', 'cancel', {'stream_id': 'u128'}
)
create¶
Create a new stream between sender and recipient
Transfer assets to another account in the form of stream Any supported assets in parallel/heiko can be used to stream. The sender's assets will be locked into palletId Will transfer to recipient as the stream progresses
recipient: the receiving addressdeposit: the amount sender will deposit to create the streamasset_id: asset should be able to lookup.start_time: the time when the stream will startend_time: the time when the stream will end
Attributes¶
| Name | Type |
|---|---|
| recipient | AccountOf<T> |
| deposit | BalanceOf<T> |
| asset_id | AssetIdOf<T> |
| start_time | Timestamp |
| end_time | Timestamp |
| cancellable | bool |
Python¶
call = substrate.compose_call(
'Streaming', 'create', {
'asset_id': 'u32',
'cancellable': 'bool',
'deposit': 'u128',
'end_time': 'u64',
'recipient': 'AccountId',
'start_time': 'u64',
}
)
set_minimum_deposit¶
Set the minimum deposit for a stream
Can only be called by the UpdateOrigin
asset_id: the stream id which will be set the minimum depositminimum_deposit: the minimum deposit for a stream
Attributes¶
| Name | Type |
|---|---|
| asset_id | AssetIdOf<T> |
| minimum_deposit | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'Streaming', 'set_minimum_deposit', {
'asset_id': 'u32',
'minimum_deposit': 'u128',
}
)
withdraw¶
Withdraw from a existed stream
Can be called by the sender or the recipient
stream_id: the stream id which will be withdraw fromamount`: the amount of asset to withdraw
Attributes¶
| Name | Type |
|---|---|
| stream_id | StreamId |
| amount | BalanceOf<T> |
Python¶
call = substrate.compose_call(
'Streaming', 'withdraw', {
'amount': 'u128',
'stream_id': 'u128',
}
)
Events¶
MinimumDepositSet¶
Set minimum deposit for creating a stream [asset_id, minimum_deposit]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | AssetIdOf<T> |
u32 |
| None | BalanceOf<T> |
u128 |
StreamCancelled¶
Cancel an existing stream. [stream_id, sender, recipient, asset_id, sender_balance, recipient_balance]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | StreamId |
u128 |
| None | AccountOf<T> |
AccountId |
| None | AccountOf<T> |
AccountId |
| None | AssetIdOf<T> |
u32 |
| None | BalanceOf<T> |
u128 |
| None | BalanceOf<T> |
u128 |
StreamCreated¶
Creates a payment stream. [stream_id, sender, recipient, deposit, asset_id, start_time, end_time, cancellable]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | StreamId |
u128 |
| None | AccountOf<T> |
AccountId |
| None | AccountOf<T> |
AccountId |
| None | BalanceOf<T> |
u128 |
| None | AssetIdOf<T> |
u32 |
| None | Timestamp |
u64 |
| None | Timestamp |
u64 |
| None | bool |
bool |
StreamWithdrawn¶
Withdraw payment from stream. [stream_id, recipient, asset_id, amount]
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | StreamId |
u128 |
| None | AccountOf<T> |
AccountId |
| None | AssetIdOf<T> |
u32 |
| None | BalanceOf<T> |
u128 |
Storage functions¶
MinimumDeposits¶
Minimum deposit for each asset
Python¶
result = substrate.query(
'Streaming', 'MinimumDeposits', ['u32']
)
Return value¶
'u128'
NextStreamId¶
Next Stream Id
Python¶
result = substrate.query(
'Streaming', 'NextStreamId', []
)
Return value¶
'u128'
StreamLibrary¶
Streams holds by each account account_id => stream_kind => stream_id
Python¶
result = substrate.query(
'Streaming', 'StreamLibrary', [
'AccountId',
('Send', 'Receive', 'Finish'),
]
)
Return value¶
['u128']
Streams¶
Global storage for streams
Python¶
result = substrate.query(
'Streaming', 'Streams', ['u128']
)
Return value¶
{
'asset_id': 'u32',
'cancellable': 'bool',
'deposit': 'u128',
'end_time': 'u64',
'rate_per_sec': 'u128',
'recipient': 'AccountId',
'remaining_balance': 'u128',
'sender': 'AccountId',
'start_time': 'u64',
'status': {
'Completed': {'cancelled': 'bool'},
'Ongoing': {'as_collateral': 'bool'},
},
}
Constants¶
MaxFinishedStreamsCount¶
The max count of streams that has been cancelled or completed for an account
Value¶
10
Python¶
constant = substrate.get_constant('Streaming', 'MaxFinishedStreamsCount')
MaxStreamsCount¶
The max count of streams for an account
Value¶
128
Python¶
constant = substrate.get_constant('Streaming', 'MaxStreamsCount')
NativeCurrencyId¶
Currency id of the native token
Value¶
1
Python¶
constant = substrate.get_constant('Streaming', 'NativeCurrencyId')
NativeExistentialDeposit¶
The essential balance for an existed account
Value¶
100000000000
Python¶
constant = substrate.get_constant('Streaming', 'NativeExistentialDeposit')
PalletId¶
The streaming module id, keep all collaterals of CDPs.
Value¶
'0x7061722f7374726d'
Python¶
constant = substrate.get_constant('Streaming', 'PalletId')
Errors¶
CannotBeCancelled¶
Stream cannot be cancelled
DepositLowerThanMinimum¶
Insufficient deposit size
EndTimeBeforeStartTime¶
End time is before start time
ExcessMaxStreamsCount¶
Excess max streams count
HasFinished¶
Stream was cancelled or completed
InsufficientStreamBalance¶
Amount exceeds balance
InvalidAssetId¶
Asset is not supported to create stream
InvalidDuration¶
The duration calculated is too short or too long
InvalidRatePerSecond¶
The rate per second calculated is zero
InvalidStreamId¶
The stream id is not found
NotStarted¶
Stream not started
NotTheRecipient¶
Caller is not the stream recipient
NotTheSender¶
Caller is not the stream sender
RecipientIsAlsoSender¶
Sender as specified themselves as the recipient
StartTimeBeforeCurrentTime¶
Start time is before current block time
System¶
Calls¶
fill_block¶
A dispatch that will fill the block weight up to the given ratio.
Attributes¶
| Name | Type |
|---|---|
| ratio | Perbill |
Python¶
call = substrate.compose_call(
'System', 'fill_block', {'ratio': 'u32'}
)
kill_prefix¶
Kill all storage items with a key that starts with the given prefix.
NOTE: We rely on the Root origin to provide us the number of subkeys under the prefix we are removing to accurately calculate the weight of this function.
Attributes¶
| Name | Type |
|---|---|
| prefix | Key |
| subkeys | u32 |
Python¶
call = substrate.compose_call(
'System', 'kill_prefix', {'prefix': 'Bytes', 'subkeys': 'u32'}
)
kill_storage¶
Kill some items from storage.
Attributes¶
| Name | Type |
|---|---|
| keys | Vec<Key> |
Python¶
call = substrate.compose_call(
'System', 'kill_storage', {'keys': ['Bytes']}
)
remark¶
Make some on-chain remark.
# <weight>
- O(1)
# </weight>
Attributes¶
| Name | Type |
|---|---|
| remark | Vec<u8> |
Python¶
call = substrate.compose_call(
'System', 'remark', {'remark': 'Bytes'}
)
remark_with_event¶
Make some on-chain remark and emit event.
Attributes¶
| Name | Type |
|---|---|
| remark | Vec<u8> |
Python¶
call = substrate.compose_call(
'System', 'remark_with_event', {'remark': 'Bytes'}
)
set_code¶
Set the new runtime code.
# <weight>
- O(C + S) where C length of code and S complexity of can_set_code
- 1 call to can_set_code: O(S) (calls sp_io::misc::runtime_version which is
expensive).
- 1 storage write (codec O(C)).
- 1 digest item.
- 1 event.
The weight of this function is dependent on the runtime, but generally this is very
expensive. We will treat this as a full block.
# </weight>
Attributes¶
| Name | Type |
|---|---|
| code | Vec<u8> |
Python¶
call = substrate.compose_call(
'System', 'set_code', {'code': 'Bytes'}
)
set_code_without_checks¶
Set the new runtime code without doing any checks of the given code.
# <weight>
- O(C) where C length of code
- 1 storage write (codec O(C)).
- 1 digest item.
- 1 event.
The weight of this function is dependent on the runtime. We will treat this as a full
block. # </weight>
Attributes¶
| Name | Type |
|---|---|
| code | Vec<u8> |
Python¶
call = substrate.compose_call(
'System', 'set_code_without_checks', {'code': 'Bytes'}
)
set_heap_pages¶
Set the number of pages in the WebAssembly environment's heap.
Attributes¶
| Name | Type |
|---|---|
| pages | u64 |
Python¶
call = substrate.compose_call(
'System', 'set_heap_pages', {'pages': 'u64'}
)
set_storage¶
Set some items of storage.
Attributes¶
| Name | Type |
|---|---|
| items | Vec<KeyValue> |
Python¶
call = substrate.compose_call(
'System', 'set_storage', {'items': [('Bytes', 'Bytes')]}
)
Events¶
CodeUpdated¶
:code was updated.
Attributes¶
No attributes
ExtrinsicFailed¶
An extrinsic failed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| dispatch_error | DispatchError |
{'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None} |
| dispatch_info | DispatchInfo |
{'weight': {'ref_time': 'u64', 'proof_size': 'u64'}, 'class': ('Normal', 'Operational', 'Mandatory'), 'pays_fee': ('Yes', 'No')} |
ExtrinsicSuccess¶
An extrinsic completed successfully.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| dispatch_info | DispatchInfo |
{'weight': {'ref_time': 'u64', 'proof_size': 'u64'}, 'class': ('Normal', 'Operational', 'Mandatory'), 'pays_fee': ('Yes', 'No')} |
KilledAccount¶
An account was reaped.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
NewAccount¶
A new account was created.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
Remarked¶
On on-chain remark happened.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| sender | T::AccountId |
AccountId |
| hash | T::Hash |
[u8; 32] |
Storage functions¶
Account¶
The full account information for a particular account ID.
Python¶
result = substrate.query(
'System', 'Account', ['AccountId']
)
Return value¶
{
'consumers': 'u32',
'data': {
'fee_frozen': 'u128',
'free': 'u128',
'misc_frozen': 'u128',
'reserved': 'u128',
},
'nonce': 'u32',
'providers': 'u32',
'sufficients': 'u32',
}
AllExtrinsicsLen¶
Total length (in bytes) for all extrinsics put together, for the current block.
Python¶
result = substrate.query(
'System', 'AllExtrinsicsLen', []
)
Return value¶
'u32'
BlockHash¶
Map of block numbers to block hashes.
Python¶
result = substrate.query(
'System', 'BlockHash', ['u32']
)
Return value¶
'[u8; 32]'
BlockWeight¶
The current weight for the block.
Python¶
result = substrate.query(
'System', 'BlockWeight', []
)
Return value¶
{
'mandatory': {'proof_size': 'u64', 'ref_time': 'u64'},
'normal': {'proof_size': 'u64', 'ref_time': 'u64'},
'operational': {'proof_size': 'u64', 'ref_time': 'u64'},
}
Digest¶
Digest of the current block, also part of the block header.
Python¶
result = substrate.query(
'System', 'Digest', []
)
Return value¶
{
'logs': [
{
'Other': 'Bytes',
None: None,
'Consensus': ('[u8; 4]', 'Bytes'),
'PreRuntime': ('[u8; 4]', 'Bytes'),
'RuntimeEnvironmentUpdated': None,
'Seal': ('[u8; 4]', 'Bytes'),
},
],
}
EventCount¶
The number of events in the Events<T> list.
Python¶
result = substrate.query(
'System', 'EventCount', []
)
Return value¶
'u32'
EventTopics¶
Mapping between a topic (represented by T::Hash) and a vector of indexes
of events in the <Events<T>> list.
All topic vectors have deterministic storage locations depending on the topic. This allows light-clients to leverage the changes trie storage tracking mechanism and in case of changes fetch the list of events of interest.
The value has the type (T::BlockNumber, EventIndex) because if we used only just
the EventIndex then in case if the topic has the same contents on the next block
no notification will be triggered thus the event might be lost.
Python¶
result = substrate.query(
'System', 'EventTopics', ['[u8; 32]']
)
Return value¶
[('u32', 'u32')]
Events¶
Events deposited for the current block.
NOTE: The item is unbound and should therefore never be read on chain. It could otherwise inflate the PoV size of a block.
Events have a large in-memory size. Box the events to not go out-of-memory just in case someone still reads them from within the runtime.
Python¶
result = substrate.query(
'System', 'Events', []
)
Return value¶
[
{
'event': {
'AMM': {
'LiquidityAdded': (
'AccountId',
'u32',
'u32',
'u128',
'u128',
'u32',
'u128',
'u128',
),
'LiquidityRemoved': (
'AccountId',
'u32',
'u32',
'u128',
'u128',
'u128',
'u32',
'u128',
'u128',
),
'PoolCreated': ('AccountId', 'u32', 'u32', 'u32'),
'ProtocolFeeReceiverUpdated': 'AccountId',
'ProtocolFeeUpdated': 'u32',
'Traded': (
'AccountId',
'u32',
'u32',
'u128',
'u128',
'u32',
'u128',
'u128',
),
},
'AMMRoute': {'Traded': ('AccountId', 'u128', ['u32'], 'u128')},
'AssetRegistry': {
'AssetDeregisteredd': {
'asset_id': 'u32',
'asset_type': 'scale_info::145',
},
'AssetRegistered': {
'asset_id': 'u32',
'asset_type': 'scale_info::145',
},
'AssetTypeUpdated': {
'asset_id': 'u32',
'new_asset_type': 'scale_info::145',
},
'FeePaymentAssetRemoved': {'asset_type': 'scale_info::145'},
'UnitsPerSecondUpdated': {
'asset_type': 'scale_info::145',
'units_per_second': 'u128',
},
},
'Assets': {
'ApprovalCancelled': {
'asset_id': 'u32',
'delegate': 'AccountId',
'owner': 'AccountId',
},
'ApprovedTransfer': {
'amount': 'u128',
'asset_id': 'u32',
'delegate': 'AccountId',
'source': 'AccountId',
},
'AssetFrozen': {'asset_id': 'u32'},
'AssetStatusChanged': {'asset_id': 'u32'},
'AssetThawed': {'asset_id': 'u32'},
'Burned': {
'asset_id': 'u32',
'balance': 'u128',
'owner': 'AccountId',
},
'Created': {
'asset_id': 'u32',
'creator': 'AccountId',
'owner': 'AccountId',
},
'Destroyed': {'asset_id': 'u32'},
'ForceCreated': {'asset_id': 'u32', 'owner': 'AccountId'},
'Frozen': {'asset_id': 'u32', 'who': 'AccountId'},
'Issued': {
'asset_id': 'u32',
'owner': 'AccountId',
'total_supply': 'u128',
},
'MetadataCleared': {'asset_id': 'u32'},
'MetadataSet': {
'asset_id': 'u32',
'decimals': 'u8',
'is_frozen': 'bool',
'name': 'Bytes',
'symbol': 'Bytes',
},
'OwnerChanged': {'asset_id': 'u32', 'owner': 'AccountId'},
'TeamChanged': {
'admin': 'AccountId',
'asset_id': 'u32',
'freezer': 'AccountId',
'issuer': 'AccountId',
},
'Thawed': {'asset_id': 'u32', 'who': 'AccountId'},
'Transferred': {
'amount': 'u128',
'asset_id': 'u32',
'from': 'AccountId',
'to': 'AccountId',
},
'TransferredApproved': {
'amount': 'u128',
'asset_id': 'u32',
'delegate': 'AccountId',
'destination': 'AccountId',
'owner': 'AccountId',
},
},
'Balances': {
'BalanceSet': {
'free': 'u128',
'reserved': 'u128',
'who': 'AccountId',
},
'Deposit': {'amount': 'u128', 'who': 'AccountId'},
'DustLost': {'account': 'AccountId', 'amount': 'u128'},
'Endowed': {'account': 'AccountId', 'free_balance': 'u128'},
'ReserveRepatriated': {
'amount': 'u128',
'destination_status': 'scale_info::35',
'from': 'AccountId',
'to': 'AccountId',
},
'Reserved': {'amount': 'u128', 'who': 'AccountId'},
'Slashed': {'amount': 'u128', 'who': 'AccountId'},
'Transfer': {
'amount': 'u128',
'from': 'AccountId',
'to': 'AccountId',
},
'Unreserved': {'amount': 'u128', 'who': 'AccountId'},
'Withdraw': {'amount': 'u128', 'who': 'AccountId'},
},
'Bridge': {
'BridgeTokenAccumulatedValueCleaned': (
'u32',
'scale_info::138',
),
'BridgeTokenCapUpdated': ('u32', 'scale_info::138', 'u128'),
'BridgeTokenFeeUpdated': ('u32', 'u128'),
'BridgeTokenRegistered': (
'u32',
'u32',
'bool',
'u128',
'bool',
'u128',
'u128',
'u128',
'u128',
),
'BridgeTokenRemoved': ('u32', 'u32'),
'BridgeTokenStatusUpdated': ('u32', 'bool'),
'ChainRegistered': 'u32',
'ChainRemoved': 'u32',
'MaterializeInitialized': (
'AccountId',
'u32',
'u64',
'u32',
'AccountId',
'u128',
),
'MaterializeMinted': (
'u32',
'u64',
'u32',
'AccountId',
'u128',
),
'MaterializeVoteAgainst': (
'u32',
'u64',
'AccountId',
'u32',
'AccountId',
'u128',
),
'MaterializeVoteFor': (
'u32',
'u64',
'AccountId',
'u32',
'AccountId',
'u128',
),
'ProposalApproved': ('u32', 'u64'),
'ProposalRejected': ('u32', 'u64'),
'TeleportBurned': (
'AccountId',
'u32',
'u64',
'u32',
'Bytes',
'u128',
'u128',
),
'VoteThresholdUpdated': 'u32',
},
'BridgeMembership': (
'MemberAdded',
'MemberRemoved',
'MembersSwapped',
'MembersReset',
'KeyChanged',
'Dummy',
),
'CollatorSelection': {
'CandidateAdded': {
'account_id': 'AccountId',
'deposit': 'u128',
},
'CandidateRemoved': {'account_id': 'AccountId'},
'NewCandidacyBond': {'bond_amount': 'u128'},
'NewDesiredCandidates': {'desired_candidates': 'u32'},
'NewInvulnerables': {'invulnerables': ['AccountId']},
},
'Crowdloans': {
'AllMigrated': ('u32', ('u32', 'u32')),
'AllRefunded': ('u32', ('u32', 'u32')),
'LeasesBonusUpdated': (('u32', 'u32'), 'scale_info::123'),
'NotificationReceived': (
'scale_info::61',
'u64',
(None, ('u32', 'scale_info::56')),
),
'PartiallyMigrated': ('u32', ('u32', 'u32')),
'PartiallyRefunded': ('u32', ('u32', 'u32')),
'ProxyUpdated': 'AccountId',
'UserRefunded': (
'u32',
('u32', 'u32'),
'AccountId',
'scale_info::122',
'u128',
),
'VaultClaimed': (
'u32',
('u32', 'u32'),
'u32',
'AccountId',
'u128',
'scale_info::120',
),
'VaultContributed': ('u32', ('u32', 'u32'), 'AccountId', 'u128', 'Bytes'),
'VaultCreated': (
'u32',
('u32', 'u32'),
'u32',
'scale_info::120',
'scale_info::121',
'u128',
'u32',
'u32',
),
'VaultDissolved': ('u32', ('u32', 'u32')),
'VaultDoContributing': (
'u32',
('u32', 'u32'),
'AccountId',
'u128',
'Bytes',
),
'VaultDoWithdrawing': ('u32', ('u32', 'u32'), 'u128', 'scale_info::120'),
'VaultPhaseUpdated': (
'u32',
('u32', 'u32'),
'scale_info::120',
'scale_info::120',
),
'VaultRedeemed': (
'u32',
('u32', 'u32'),
'u32',
'AccountId',
'u128',
'scale_info::120',
),
'VaultUpdated': ('u32', ('u32', 'u32'), 'scale_info::121', 'u128', 'u32'),
'VaultWithdrew': (
'u32',
('u32', 'u32'),
'AccountId',
'u128',
'scale_info::120',
),
'VrfUpdated': 'bool',
},
'CrowdloansAutomatorsMembership': (
'MemberAdded',
'MemberRemoved',
'MembersSwapped',
'MembersReset',
'KeyChanged',
'Dummy',
),
'CumulusXcm': {
'ExecutedDownward': ('[u8; 8]', 'scale_info::59'),
'InvalidFormat': '[u8; 8]',
'UnsupportedVersion': '[u8; 8]',
},
'Democracy': {
'Blacklisted': {'proposal_hash': '[u8; 32]'},
'Cancelled': {'ref_index': 'u32'},
'Delegated': {'target': 'AccountId', 'who': 'AccountId'},
'ExternalTabled': None,
'NotPassed': {'ref_index': 'u32'},
'Passed': {'ref_index': 'u32'},
'ProposalCanceled': {'prop_index': 'u32'},
'Proposed': {'deposit': 'u128', 'proposal_index': 'u32'},
'Seconded': {'prop_index': 'u32', 'seconder': 'AccountId'},
'Started': {'ref_index': 'u32', 'threshold': 'scale_info::44'},
'Tabled': {'deposit': 'u128', 'proposal_index': 'u32'},
'Undelegated': {'account': 'AccountId'},
'Vetoed': {
'proposal_hash': '[u8; 32]',
'until': 'u32',
'who': 'AccountId',
},
'Voted': {
'ref_index': 'u32',
'vote': 'scale_info::45',
'voter': 'AccountId',
},
},
'DmpQueue': {
'ExecutedDownward': {
'message_id': '[u8; 32]',
'outcome': 'scale_info::59',
},
'InvalidFormat': {'message_id': '[u8; 32]'},
'OverweightEnqueued': {
'message_id': '[u8; 32]',
'overweight_index': 'u64',
'required_weight': 'scale_info::8',
},
'OverweightServiced': {
'overweight_index': 'u64',
'weight_used': 'scale_info::8',
},
'UnsupportedVersion': {'message_id': '[u8; 32]'},
'WeightExhausted': {
'message_id': '[u8; 32]',
'remaining_weight': 'scale_info::8',
'required_weight': 'scale_info::8',
},
},
'EmergencyShutdown': {
'ToggledCall': 'bool',
'ToggledPallet': 'bool',
},
'Farming': {
'AssetsDeposited': ('AccountId', 'u32', 'u32', 'u32', 'u128'),
'AssetsRedeem': ('AccountId', 'u32', 'u32', 'u32', 'u128'),
'AssetsWithdrew': ('AccountId', 'u32', 'u32', 'u32', 'u128'),
'PoolAdded': ('u32', 'u32', 'u32'),
'PoolCoolDownDurationChanged': ('u32', 'u32', 'u32', 'u32'),
'PoolStatusChanged': ('u32', 'u32', 'u32', 'bool'),
'PoolUnlockHeightReset': ('u32', 'u32', 'u32', 'u32'),
'RewardAdded': ('u32', 'u32', 'u32', 'u128'),
'RewardPaid': ('AccountId', 'u32', 'u32', 'u32', 'u128'),
},
'GeneralCouncil': {
'Approved': {'proposal_hash': '[u8; 32]'},
'Closed': {
'no': 'u32',
'proposal_hash': '[u8; 32]',
'yes': 'u32',
},
'Disapproved': {'proposal_hash': '[u8; 32]'},
'Executed': {
'proposal_hash': '[u8; 32]',
'result': 'scale_info::30',
},
'MemberExecuted': {
'proposal_hash': '[u8; 32]',
'result': 'scale_info::30',
},
'Proposed': {
'account': 'AccountId',
'proposal_hash': '[u8; 32]',
'proposal_index': 'u32',
'threshold': 'u32',
},
'Voted': {
'account': 'AccountId',
'no': 'u32',
'proposal_hash': '[u8; 32]',
'voted': 'bool',
'yes': 'u32',
},
},
'GeneralCouncilMembership': (
'MemberAdded',
'MemberRemoved',
'MembersSwapped',
'MembersReset',
'KeyChanged',
'Dummy',
),
'Identity': {
'IdentityCleared': {'deposit': 'u128', 'who': 'AccountId'},
'IdentityKilled': {'deposit': 'u128', 'who': 'AccountId'},
'IdentitySet': {'who': 'AccountId'},
'JudgementGiven': {
'registrar_index': 'u32',
'target': 'AccountId',
},
'JudgementRequested': {
'registrar_index': 'u32',
'who': 'AccountId',
},
'JudgementUnrequested': {
'registrar_index': 'u32',
'who': 'AccountId',
},
'RegistrarAdded': {'registrar_index': 'u32'},
'SubIdentityAdded': {
'deposit': 'u128',
'main': 'AccountId',
'sub': 'AccountId',
},
'SubIdentityRemoved': {
'deposit': 'u128',
'main': 'AccountId',
'sub': 'AccountId',
},
'SubIdentityRevoked': {
'deposit': 'u128',
'main': 'AccountId',
'sub': 'AccountId',
},
},
'LiquidStaking': {
'Bonding': ('u16', 'AccountId', 'u128', 'scale_info::128'),
'BondingExtra': ('u16', 'u128'),
'ClaimedFor': ('AccountId', 'u128'),
'CommissionRateUpdated': 'u128',
'ExchangeRateUpdated': 'u128',
'FastUnstakeMatched': ('AccountId', 'u128', 'u128', 'u128'),
'Matching': ('u128', 'u128', 'u128'),
'NewEra': 'u32',
'Nominating': ('u16', ['AccountId']),
'NotificationReceived': (
'scale_info::61',
'u64',
(None, ('u32', 'scale_info::56')),
),
'Rebonding': ('u16', 'u128'),
'ReserveFactorUpdated': 'u32',
'ReservesReduced': ('AccountId', 'u128'),
'Staked': ('AccountId', 'u128'),
'StakingLedgerCapUpdated': 'u128',
'StakingLedgerUpdated': ('u16', 'scale_info::125'),
'Unbonding': ('u16', 'u128'),
'UnstakeCancelled': ('AccountId', 'u128', 'u128'),
'Unstaked': ('AccountId', 'u128', 'u128'),
'WithdrawingUnbonded': ('u16', 'u32'),
},
'LiquidStakingAgentsMembership': (
'MemberAdded',
'MemberRemoved',
'MembersSwapped',
'MembersReset',
'KeyChanged',
'Dummy',
),
'Loans': {
'ActivatedMarket': 'u32',
'Borrowed': ('AccountId', 'u32', 'u128'),
'CollateralAssetAdded': ('AccountId', 'u32'),
'CollateralAssetRemoved': ('AccountId', 'u32'),
'Deposited': ('AccountId', 'u32', 'u128'),
'DistributedBorrowerReward': (
'u32',
'AccountId',
'u128',
'u128',
),
'DistributedSupplierReward': (
'u32',
'AccountId',
'u128',
'u128',
),
'IncentiveReservesReduced': ('AccountId', 'u32', 'u128'),
'LiquidatedBorrow': (
'AccountId',
'AccountId',
'u32',
'u32',
'u128',
'u128',
),
'LiquidationFreeCollateralsUpdated': ['u32'],
'MarketRewardSpeedUpdated': ('u32', 'u128', 'u128'),
'NewMarket': ('u32', 'scale_info::111'),
'Redeemed': ('AccountId', 'u32', 'u128'),
'RepaidBorrow': ('AccountId', 'u32', 'u128'),
'ReservesAdded': ('AccountId', 'u32', 'u128', 'u128'),
'ReservesReduced': ('AccountId', 'u32', 'u128', 'u128'),
'RewardAdded': ('AccountId', 'u128'),
'RewardPaid': ('AccountId', 'u128'),
'RewardWithdrawn': ('AccountId', 'u128'),
'UpdatedMarket': ('u32', 'scale_info::111'),
},
'Multisig': {
'MultisigApproval': {
'approving': 'AccountId',
'call_hash': '[u8; 32]',
'multisig': 'AccountId',
'timepoint': 'scale_info::33',
},
'MultisigCancelled': {
'call_hash': '[u8; 32]',
'cancelling': 'AccountId',
'multisig': 'AccountId',
'timepoint': 'scale_info::33',
},
'MultisigExecuted': {
'approving': 'AccountId',
'call_hash': '[u8; 32]',
'multisig': 'AccountId',
'result': 'scale_info::30',
'timepoint': 'scale_info::33',
},
'NewMultisig': {
'approving': 'AccountId',
'call_hash': '[u8; 32]',
'multisig': 'AccountId',
},
},
'Oracle': {
'NewFeedData': {
'sender': 'AccountId',
'values': [('u32', 'u128')],
},
},
'OracleMembership': (
'MemberAdded',
'MemberRemoved',
'MembersSwapped',
'MembersReset',
'KeyChanged',
'Dummy',
),
'OrmlXcm': {
'Sent': {'message': ['scale_info::73'], 'to': 'scale_info::61'},
},
'ParachainSystem': {
'DownwardMessagesProcessed': {
'dmq_head': '[u8; 32]',
'weight_used': 'scale_info::8',
},
'DownwardMessagesReceived': {'count': 'u32'},
'UpgradeAuthorized': {'code_hash': '[u8; 32]'},
'ValidationFunctionApplied': {'relay_chain_block_num': 'u32'},
'ValidationFunctionDiscarded': None,
'ValidationFunctionStored': None,
},
'PolkadotXcm': {
'AssetsClaimed': (
'[u8; 32]',
'scale_info::61',
'scale_info::92',
),
'AssetsTrapped': (
'[u8; 32]',
'scale_info::61',
'scale_info::92',
),
'Attempted': {
'Complete': 'u64',
'Error': 'scale_info::56',
'Incomplete': ('u64', 'scale_info::56'),
},
'InvalidResponder': (
'scale_info::61',
'u64',
(None, 'scale_info::61'),
),
'InvalidResponderVersion': ('scale_info::61', 'u64'),
'Notified': ('u64', 'u8', 'u8'),
'NotifyDecodeFailed': ('u64', 'u8', 'u8'),
'NotifyDispatchError': ('u64', 'u8', 'u8'),
'NotifyOverweight': (
'u64',
'u8',
'u8',
'scale_info::8',
'scale_info::8',
),
'NotifyTargetMigrationFail': ('scale_info::97', 'u64'),
'NotifyTargetSendFail': (
'scale_info::61',
'u64',
'scale_info::56',
),
'ResponseReady': ('u64', 'scale_info::82'),
'ResponseTaken': 'u64',
'Sent': (
'scale_info::61',
'scale_info::61',
['scale_info::73'],
),
'SupportedVersionChanged': ('scale_info::61', 'u32'),
'UnexpectedResponse': ('scale_info::61', 'u64'),
'VersionChangeNotified': ('scale_info::61', 'u32'),
},
'Preimage': {
'Cleared': {'hash': '[u8; 32]'},
'Noted': {'hash': '[u8; 32]'},
'Requested': {'hash': '[u8; 32]'},
},
'Prices': {'ResetPrice': 'u32', 'SetPrice': ('u32', 'u128')},
'Proxy': {
'Announced': {
'call_hash': '[u8; 32]',
'proxy': 'AccountId',
'real': 'AccountId',
},
'ProxyAdded': {
'delay': 'u32',
'delegatee': 'AccountId',
'delegator': 'AccountId',
'proxy_type': 'scale_info::40',
},
'ProxyExecuted': {'result': 'scale_info::30'},
'ProxyRemoved': {
'delay': 'u32',
'delegatee': 'AccountId',
'delegator': 'AccountId',
'proxy_type': 'scale_info::40',
},
'PureCreated': {
'disambiguation_index': 'u16',
'proxy_type': 'scale_info::40',
'pure': 'AccountId',
'who': 'AccountId',
},
},
'Scheduler': {
'CallUnavailable': {
'id': (None, '[u8; 32]'),
'task': ('u32', 'u32'),
},
'Canceled': {'index': 'u32', 'when': 'u32'},
'Dispatched': {
'id': (None, '[u8; 32]'),
'result': 'scale_info::30',
'task': ('u32', 'u32'),
},
'PeriodicFailed': {
'id': (None, '[u8; 32]'),
'task': ('u32', 'u32'),
},
'PermanentlyOverweight': {
'id': (None, '[u8; 32]'),
'task': ('u32', 'u32'),
},
'Scheduled': {'index': 'u32', 'when': 'u32'},
},
'Session': {'NewSession': {'session_index': 'u32'}},
'Streaming': {
'MinimumDepositSet': ('u32', 'u128'),
'StreamCancelled': (
'u128',
'AccountId',
'AccountId',
'u32',
'u128',
'u128',
),
'StreamCreated': (
'u128',
'AccountId',
'AccountId',
'u128',
'u32',
'u64',
'u64',
'bool',
),
'StreamWithdrawn': ('u128', 'AccountId', 'u32', 'u128'),
},
'System': {
'CodeUpdated': None,
'ExtrinsicFailed': {
'dispatch_error': 'scale_info::24',
'dispatch_info': 'scale_info::21',
},
'ExtrinsicSuccess': {'dispatch_info': 'scale_info::21'},
'KilledAccount': {'account': 'AccountId'},
'NewAccount': {'account': 'AccountId'},
'Remarked': {'hash': '[u8; 32]', 'sender': 'AccountId'},
},
'TechnicalCommittee': {
'Approved': {'proposal_hash': '[u8; 32]'},
'Closed': {
'no': 'u32',
'proposal_hash': '[u8; 32]',
'yes': 'u32',
},
'Disapproved': {'proposal_hash': '[u8; 32]'},
'Executed': {
'proposal_hash': '[u8; 32]',
'result': 'scale_info::30',
},
'MemberExecuted': {
'proposal_hash': '[u8; 32]',
'result': 'scale_info::30',
},
'Proposed': {
'account': 'AccountId',
'proposal_hash': '[u8; 32]',
'proposal_index': 'u32',
'threshold': 'u32',
},
'Voted': {
'account': 'AccountId',
'no': 'u32',
'proposal_hash': '[u8; 32]',
'voted': 'bool',
'yes': 'u32',
},
},
'Treasury': {
'Awarded': {
'account': 'AccountId',
'award': 'u128',
'proposal_index': 'u32',
},
'Burnt': {'burnt_funds': 'u128'},
'Deposit': {'value': 'u128'},
'Proposed': {'proposal_index': 'u32'},
'Rejected': {'proposal_index': 'u32', 'slashed': 'u128'},
'Rollover': {'rollover_balance': 'u128'},
'SpendApproved': {
'amount': 'u128',
'beneficiary': 'AccountId',
'proposal_index': 'u32',
},
'Spending': {'budget_remaining': 'u128'},
},
'Utility': {
'BatchCompleted': None,
'BatchCompletedWithErrors': None,
'BatchInterrupted': {
'error': 'scale_info::24',
'index': 'u32',
},
'DispatchedAs': {'result': 'scale_info::30'},
'ItemCompleted': None,
'ItemFailed': {'error': 'scale_info::24'},
},
'XTokens': {
'TransferredMultiAssets': {
'assets': ['scale_info::76'],
'dest': 'scale_info::61',
'fee': 'scale_info::76',
'sender': 'AccountId',
},
},
None: None,
'TechnicalCommitteeMembership': (
'MemberAdded',
'MemberRemoved',
'MembersSwapped',
'MembersReset',
'KeyChanged',
'Dummy',
),
'TransactionPayment': {
'TransactionFeePaid': {
'actual_fee': 'u128',
'tip': 'u128',
'who': 'AccountId',
},
},
'Vesting': {
'Claimed': {'amount': 'u128', 'who': 'AccountId'},
'VestingScheduleAdded': {
'from': 'AccountId',
'to': 'AccountId',
'vesting_schedule': 'scale_info::109',
},
'VestingSchedulesUpdated': {'who': 'AccountId'},
},
'XcmHelper': {
'XcmWeightFeeUpdated': {
'fee': 'u128',
'weight': 'scale_info::8',
},
},
'XcmpQueue': {
'BadFormat': {'message_hash': (None, '[u8; 32]')},
'BadVersion': {'message_hash': (None, '[u8; 32]')},
'Fail': {
'error': 'scale_info::56',
'message_hash': (None, '[u8; 32]'),
'weight': 'scale_info::8',
},
'OverweightEnqueued': {
'index': 'u64',
'required': 'scale_info::8',
'sender': 'u32',
'sent_at': 'u32',
},
'OverweightServiced': {
'index': 'u64',
'used': 'scale_info::8',
},
'Success': {'message_hash': (None, '[u8; 32]'), 'weight': 'scale_info::8'},
'UpwardMessageSent': {'message_hash': (None, '[u8; 32]')},
'XcmpMessageSent': {'message_hash': (None, '[u8; 32]')},
},
},
'phase': {
'ApplyExtrinsic': 'u32',
'Finalization': None,
'Initialization': None,
},
'topics': ['[u8; 32]'],
},
]
ExecutionPhase¶
The execution phase of the block.
Python¶
result = substrate.query(
'System', 'ExecutionPhase', []
)
Return value¶
{'ApplyExtrinsic': 'u32', 'Finalization': None, 'Initialization': None}
ExtrinsicCount¶
Total extrinsics count for the current block.
Python¶
result = substrate.query(
'System', 'ExtrinsicCount', []
)
Return value¶
'u32'
ExtrinsicData¶
Extrinsics data for the current block (maps an extrinsic's index to its data).
Python¶
result = substrate.query(
'System', 'ExtrinsicData', ['u32']
)
Return value¶
'Bytes'
LastRuntimeUpgrade¶
Stores the spec_version and spec_name of when the last runtime upgrade happened.
Python¶
result = substrate.query(
'System', 'LastRuntimeUpgrade', []
)
Return value¶
{'spec_name': 'Str', 'spec_version': 'u32'}
Number¶
The current block number being processed. Set by execute_block.
Python¶
result = substrate.query(
'System', 'Number', []
)
Return value¶
'u32'
ParentHash¶
Hash of the previous block.
Python¶
result = substrate.query(
'System', 'ParentHash', []
)
Return value¶
'[u8; 32]'
UpgradedToTripleRefCount¶
True if we have upgraded so that AccountInfo contains three types of RefCount. False
(default) if not.
Python¶
result = substrate.query(
'System', 'UpgradedToTripleRefCount', []
)
Return value¶
'bool'
UpgradedToU32RefCount¶
True if we have upgraded so that type RefCount is u32. False (default) if not.
Python¶
result = substrate.query(
'System', 'UpgradedToU32RefCount', []
)
Return value¶
'bool'
Constants¶
BlockHashCount¶
Maximum number of block number to block hash mappings to keep (oldest pruned first).
Value¶
250
Python¶
constant = substrate.get_constant('System', 'BlockHashCount')
BlockLength¶
The maximum length of a block (in bytes).
Value¶
{'max': {'mandatory': 5242880, 'normal': 3932160, 'operational': 5242880}}
Python¶
constant = substrate.get_constant('System', 'BlockLength')
BlockWeights¶
Block & extrinsics weights: base values and limits.
Value¶
{
'base_block': {'proof_size': 0, 'ref_time': 5346284000},
'max_block': {'proof_size': 5242880, 'ref_time': 500000000000},
'per_class': {
'mandatory': {
'base_extrinsic': {'proof_size': 0, 'ref_time': 86298000},
'max_extrinsic': None,
'max_total': None,
'reserved': None,
},
'normal': {
'base_extrinsic': {'proof_size': 0, 'ref_time': 86298000},
'max_extrinsic': {'proof_size': 3407872, 'ref_time': 324913702000},
'max_total': {'proof_size': 3932160, 'ref_time': 375000000000},
'reserved': {'proof_size': 0, 'ref_time': 0},
},
'operational': {
'base_extrinsic': {'proof_size': 0, 'ref_time': 86298000},
'max_extrinsic': {'proof_size': 4718592, 'ref_time': 449913702000},
'max_total': {'proof_size': 5242880, 'ref_time': 500000000000},
'reserved': {'proof_size': 1310720, 'ref_time': 125000000000},
},
},
}
Python¶
constant = substrate.get_constant('System', 'BlockWeights')
DbWeight¶
The weight of runtime database operations the runtime can invoke.
Value¶
{'read': 25000000, 'write': 100000000}
Python¶
constant = substrate.get_constant('System', 'DbWeight')
SS58Prefix¶
The designated SS58 prefix of this chain.
This replaces the "ss58Format" property declared in the chain spec. Reason is that the runtime should know about the prefix in order to make use of it as an identifier of the chain.
Value¶
172
Python¶
constant = substrate.get_constant('System', 'SS58Prefix')
Version¶
Get the chain's current version.
Value¶
{
'apis': [
('0xdd718d5cc53262d4', 1),
('0xab3c0572291feb8b', 1),
('0xdf6acb689907609b', 4),
('0x37e397fc7c91f5e4', 1),
('0x40fe3ad401f8959a', 6),
('0xd2bc9897eed08f15', 3),
('0xf78b278be53f454c', 2),
('0xbc9d89904f5b923f', 1),
('0x37c8bb1350a9a2a8', 2),
('0x6ef953004ba30e59', 1),
('0xea93e3f16f3d6962', 2),
('0x22b97323b9e853da', 1),
('0x99bb7f9383f5f9b8', 1),
],
'authoring_version': 1,
'impl_name': 'parallel',
'impl_version': 33,
'spec_name': 'parallel',
'spec_version': 194,
'state_version': 0,
'transaction_version': 17,
}
Python¶
constant = substrate.get_constant('System', 'Version')
Errors¶
CallFiltered¶
The origin filter prevent the call to be dispatched.
FailedToExtractRuntimeVersion¶
Failed to extract the runtime version from the new runtime.
Either calling Core_version or decoding RuntimeVersion failed.
InvalidSpecName¶
The name of specification does not match between the current runtime and the new runtime.
NonDefaultComposite¶
Suicide called when the account has non-default composite data.
NonZeroRefCount¶
There is a non-zero reference count preventing the account from being purged.
SpecVersionNeedsToIncrease¶
The specification version is not allowed to decrease between the current runtime and the new runtime.
TechnicalCommittee¶
Calls¶
close¶
Close a vote that is either approved, disapproved or whose voting period has ended.
May be called by any signed account in order to finish voting and close the proposal.
If called before the end of the voting period it will only close the vote if it is has enough votes to be approved or disapproved.
If called after the end of the voting period abstentions are counted as rejections unless there is a prime member set and the prime member cast an approval.
If the close operation completes successfully with disapproval, the transaction fee will be waived. Otherwise execution of the approved operation will be charged to the caller.
proposal_weight_bound: The maximum amount of weight consumed by executing the closed proposal.length_bound: The upper bound for the length of the proposal in storage. Checked viastorage::readso it issize_of::<u32>() == 4larger than the pure length.
# <weight>
## Weight
- O(B + M + P1 + P2) where:
- B is proposal size in bytes (length-fee-bounded)
- M is members-count (code- and governance-bounded)
- P1 is the complexity of proposal preimage.
- P2 is proposal-count (code-bounded)
- DB:
- 2 storage reads (Members: codec O(M), Prime: codec O(1))
- 3 mutations (Voting: codec O(M), ProposalOf: codec O(B), Proposals: codec
O(P2))
- any mutations done while executing proposal (P1)
- up to 3 events
# </weight>
Attributes¶
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
| index | ProposalIndex |
| proposal_weight_bound | Weight |
| length_bound | u32 |
Python¶
call = substrate.compose_call(
'TechnicalCommittee', 'close', {
'index': 'u32',
'length_bound': 'u32',
'proposal_hash': '[u8; 32]',
'proposal_weight_bound': {
'proof_size': 'u64',
'ref_time': 'u64',
},
}
)
close_old_weight¶
Close a vote that is either approved, disapproved or whose voting period has ended.
May be called by any signed account in order to finish voting and close the proposal.
If called before the end of the voting period it will only close the vote if it is has enough votes to be approved or disapproved.
If called after the end of the voting period abstentions are counted as rejections unless there is a prime member set and the prime member cast an approval.
If the close operation completes successfully with disapproval, the transaction fee will be waived. Otherwise execution of the approved operation will be charged to the caller.
proposal_weight_bound: The maximum amount of weight consumed by executing the closed proposal.length_bound: The upper bound for the length of the proposal in storage. Checked viastorage::readso it issize_of::<u32>() == 4larger than the pure length.
# <weight>
## Weight
- O(B + M + P1 + P2) where:
- B is proposal size in bytes (length-fee-bounded)
- M is members-count (code- and governance-bounded)
- P1 is the complexity of proposal preimage.
- P2 is proposal-count (code-bounded)
- DB:
- 2 storage reads (Members: codec O(M), Prime: codec O(1))
- 3 mutations (Voting: codec O(M), ProposalOf: codec O(B), Proposals: codec
O(P2))
- any mutations done while executing proposal (P1)
- up to 3 events
# </weight>
Attributes¶
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
| index | ProposalIndex |
| proposal_weight_bound | OldWeight |
| length_bound | u32 |
Python¶
call = substrate.compose_call(
'TechnicalCommittee', 'close_old_weight', {
'index': 'u32',
'length_bound': 'u32',
'proposal_hash': '[u8; 32]',
'proposal_weight_bound': 'u64',
}
)
disapprove_proposal¶
Disapprove a proposal, close, and remove it from the system, regardless of its current state.
Must be called by the Root origin.
Parameters:
* proposal_hash: The hash of the proposal that should be disapproved.
# <weight> Complexity: O(P) where P is the number of max proposals DB Weight: * Reads: Proposals * Writes: Voting, Proposals, ProposalOf # </weight>
Attributes¶
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
Python¶
call = substrate.compose_call(
'TechnicalCommittee', 'disapprove_proposal', {'proposal_hash': '[u8; 32]'}
)
execute¶
Dispatch a proposal from a member using the Member origin.
Origin must be a member of the collective.
# <weight>
## Weight
- O(M + P) where M members-count (code-bounded) and P complexity of dispatching
proposal
- DB: 1 read (codec O(M)) + DB access of proposal
- 1 event
# </weight>
Attributes¶
| Name | Type |
|---|---|
| proposal | Box<<T as Config<I>>::Proposal> |
| length_bound | u32 |
Python¶
call = substrate.compose_call(
'TechnicalCommittee', 'execute', {
'length_bound': 'u32',
'proposal': 'Call',
}
)
propose¶
Add a new proposal to either be voted on or executed directly.
Requires the sender to be member.
threshold determines whether proposal is executed directly (threshold < 2)
or put up for voting.
# <weight>
## Weight
- O(B + M + P1) or O(B + M + P2) where:
- B is proposal size in bytes (length-fee-bounded)
- M is members-count (code- and governance-bounded)
- branching is influenced by threshold where:
- P1 is proposal execution complexity (threshold < 2)
- P2 is proposals-count (code-bounded) (threshold >= 2)
- DB:
- 1 storage read is_member (codec O(M))
- 1 storage read ProposalOf::contains_key (codec O(1))
- DB accesses influenced by threshold:
- EITHER storage accesses done by proposal (threshold < 2)
- OR proposal insertion (threshold <= 2)
- 1 storage mutation Proposals (codec O(P2))
- 1 storage mutation ProposalCount (codec O(1))
- 1 storage write ProposalOf (codec O(B))
- 1 storage write Voting (codec O(M))
- 1 event
# </weight>
Attributes¶
| Name | Type |
|---|---|
| threshold | MemberCount |
| proposal | Box<<T as Config<I>>::Proposal> |
| length_bound | u32 |
Python¶
call = substrate.compose_call(
'TechnicalCommittee', 'propose', {
'length_bound': 'u32',
'proposal': 'Call',
'threshold': 'u32',
}
)
set_members¶
Set the collective's membership.
new_members: The new member list. Be nice to the chain and provide it sorted.prime: The prime member whose vote sets the default.old_count: The upper bound for the previous number of members in storage. Used for weight estimation.
Requires root origin.
NOTE: Does not enforce the expected MaxMembers limit on the amount of members, but
the weight estimations rely on it to estimate dispatchable weight.
# WARNING:
The pallet-collective can also be managed by logic outside of the pallet through the
implementation of the trait [ChangeMembers].
Any call to set_members must be careful that the member set doesn't get out of sync
with other logic managing the member set.
# <weight>
## Weight
- O(MP + N) where:
- M old-members-count (code- and governance-bounded)
- N new-members-count (code- and governance-bounded)
- P proposals-count (code-bounded)
- DB:
- 1 storage mutation (codec O(M) read, O(N) write) for reading and writing the
members
- 1 storage read (codec O(P)) for reading the proposals
- P storage mutations (codec O(M)) for updating the votes for each proposal
- 1 storage write (codec O(1)) for deleting the old prime and setting the new one
# </weight>
Attributes¶
| Name | Type |
|---|---|
| new_members | Vec<T::AccountId> |
| prime | Option<T::AccountId> |
| old_count | MemberCount |
Python¶
call = substrate.compose_call(
'TechnicalCommittee', 'set_members', {
'new_members': ['AccountId'],
'old_count': 'u32',
'prime': (None, 'AccountId'),
}
)
vote¶
Add an aye or nay vote for the sender to the given proposal.
Requires the sender to be a member.
Transaction fees will be waived if the member is voting on any particular proposal
for the first time and the call is successful. Subsequent vote changes will charge a
fee.
# <weight>
## Weight
- O(M) where M is members-count (code- and governance-bounded)
- DB:
- 1 storage read Members (codec O(M))
- 1 storage mutation Voting (codec O(M))
- 1 event
# </weight>
Attributes¶
| Name | Type |
|---|---|
| proposal | T::Hash |
| index | ProposalIndex |
| approve | bool |
Python¶
call = substrate.compose_call(
'TechnicalCommittee', 'vote', {
'approve': 'bool',
'index': 'u32',
'proposal': '[u8; 32]',
}
)
Events¶
Approved¶
A motion was approved by the required threshold.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
Closed¶
A proposal was closed because its threshold was reached or after its duration was up.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
| yes | MemberCount |
u32 |
| no | MemberCount |
u32 |
Disapproved¶
A motion was not approved by the required threshold.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
Executed¶
A motion was executed; result will be Ok if it returned without error.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None}} |
MemberExecuted¶
A single member did some action; result will be Ok if it returned without error.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None}} |
Proposed¶
A motion (given hash) has been proposed (by given account) with a threshold (given
MemberCount).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
| proposal_index | ProposalIndex |
u32 |
| proposal_hash | T::Hash |
[u8; 32] |
| threshold | MemberCount |
u32 |
Voted¶
A motion (given hash) has been voted on by given account, leaving
a tally (yes votes and no votes given respectively as MemberCount).
Attributes¶
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
| proposal_hash | T::Hash |
[u8; 32] |
| voted | bool |
bool |
| yes | MemberCount |
u32 |
| no | MemberCount |
u32 |
Storage functions¶
Members¶
The current members of the collective. This is stored sorted (just by value).
Python¶
result = substrate.query(
'TechnicalCommittee', 'Members', []
)
Return value¶
['AccountId']
Prime¶
The prime member that helps determine the default vote behavior in case of absentations.
Python¶
result = substrate.query(
'TechnicalCommittee', 'Prime', []
)
Return value¶
'AccountId'
ProposalCount¶
Proposals so far.
Python¶
result = substrate.query(
'TechnicalCommittee', 'ProposalCount', []
)
Return value¶
'u32'
ProposalOf¶
Actual proposal for a given hash, if it's current.
Python¶
result = substrate.query(
'TechnicalCommittee', 'ProposalOf', ['[u8; 32]']
)
Return value¶
'Call'
Proposals¶
The hashes of the active proposals.
Python¶
result = substrate.query(
'TechnicalCommittee', 'Proposals', []
)
Return value¶
['[u8; 32]']
Voting¶
Votes on a given proposal, if it is ongoing.
Python¶
result = substrate.query(
'TechnicalCommittee', 'Voting', ['[u8; 32]']
)
Return value¶
{'ayes': ['AccountId'], 'end': 'u32', 'index': 'u32', 'nays': ['AccountId'], 'threshold': 'u32'}
Errors¶
AlreadyInitialized¶
Members are already initialized!
DuplicateProposal¶
Duplicate proposals not allowed
DuplicateVote¶
Duplicate vote ignored
NotMember¶
Account is not a member
ProposalMissing¶
Proposal must exist
TooEarly¶
The close call was made too early, before the end of the voting.
TooManyProposals¶
There can only be a maximum of MaxProposals active proposals.
WrongIndex¶
Mismatched index
WrongProposalLength¶
The given length bound for the proposal was too low.
WrongProposalWeight¶
The given weight bound for the proposal was too low.
TechnicalCommitteeMembership¶
Calls¶
add_member¶
Add a member who to the set.
May only be called from T::AddOrigin.
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'TechnicalCommitteeMembership', 'add_member', {
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
change_key¶
Swap out the sending member for some other key new.
May only be called from Signed origin of a current member.
Prime membership is passed from the origin account to new, if extant.
Attributes¶
| Name | Type |
|---|---|
| new | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'TechnicalCommitteeMembership', 'change_key', {
'new': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
clear_prime¶
Remove the prime member if it exists.
May only be called from T::PrimeOrigin.
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'TechnicalCommitteeMembership', 'clear_prime', {}
)
remove_member¶
Remove a member who from the set.
May only be called from T::RemoveOrigin.
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'TechnicalCommitteeMembership', 'remove_member', {
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
reset_members¶
Change the membership to a new set, disregarding the existing membership. Be nice and
pass members pre-sorted.
May only be called from T::ResetOrigin.
Attributes¶
| Name | Type |
|---|---|
| members | Vec<T::AccountId> |
Python¶
call = substrate.compose_call(
'TechnicalCommitteeMembership', 'reset_members', {'members': ['AccountId']}
)
set_prime¶
Set the prime member. Must be a current member.
May only be called from T::PrimeOrigin.
Attributes¶
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'TechnicalCommitteeMembership', 'set_prime', {
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
swap_member¶
Swap out one member remove for another add.
May only be called from T::SwapOrigin.
Prime membership is not passed from remove to add, if extant.
Attributes¶
| Name | Type |
|---|---|
| remove | AccountIdLookupOf<T> |
| add | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'TechnicalCommitteeMembership', 'swap_member', {
'add': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'remove': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
Events¶
Dummy¶
Phantom member, never used.
Attributes¶
No attributes
KeyChanged¶
One of the members' keys changed.
Attributes¶
No attributes
MemberAdded¶
The given member was added; see the transaction for who.
Attributes¶
No attributes
MemberRemoved¶
The given member was removed; see the transaction for who.
Attributes¶
No attributes
MembersReset¶
The membership was reset; see the transaction for who the new set is.
Attributes¶
No attributes
MembersSwapped¶
Two members were swapped; see the transaction for who.
Attributes¶
No attributes
Storage functions¶
Members¶
The current membership, stored as an ordered Vec.
Python¶
result = substrate.query(
'TechnicalCommitteeMembership', 'Members', []
)
Return value¶
['AccountId']
Prime¶
The current prime member, if one exists.
Python¶
result = substrate.query(
'TechnicalCommitteeMembership', 'Prime', []
)
Return value¶
'AccountId'
Errors¶
AlreadyMember¶
Already a member.
NotMember¶
Not a member.
TooManyMembers¶
Too many members.
Timestamp¶
Calls¶
set¶
Set the current time.
This call should be invoked exactly once per block. It will panic at the finalization phase, if this call hasn't been invoked by that time.
The timestamp should be greater than the previous one by the amount specified by
MinimumPeriod.
The dispatch origin for this call must be Inherent.
# <weight>
- O(1) (Note that implementations of OnTimestampSet must also be O(1))
- 1 storage read and 1 storage mutation (codec O(1)). (because of DidUpdate::take in
on_finalize)
- 1 event handler on_timestamp_set. Must be O(1).
# </weight>
Attributes¶
| Name | Type |
|---|---|
| now | T::Moment |
Python¶
call = substrate.compose_call(
'Timestamp', 'set', {'now': 'u64'}
)
Storage functions¶
DidUpdate¶
Did the timestamp get updated in this block?
Python¶
result = substrate.query(
'Timestamp', 'DidUpdate', []
)
Return value¶
'bool'
Now¶
Current time for the current block.
Python¶
result = substrate.query(
'Timestamp', 'Now', []
)
Return value¶
'u64'
Constants¶
MinimumPeriod¶
The minimum period between blocks. Beware that this is different to the expected period that the block production apparatus provides. Your chosen consensus system will generally work with this to determine a sensible block time. e.g. For Aura, it will be double this period on default settings.
Value¶
6000
Python¶
constant = substrate.get_constant('Timestamp', 'MinimumPeriod')
TransactionPayment¶
Events¶
TransactionFeePaid¶
A transaction fee actual_fee, of which tip was added to the minimum inclusion fee,
has been paid by who.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| actual_fee | BalanceOf<T> |
u128 |
| tip | BalanceOf<T> |
u128 |
Storage functions¶
NextFeeMultiplier¶
Python¶
result = substrate.query(
'TransactionPayment', 'NextFeeMultiplier', []
)
Return value¶
'u128'
StorageVersion¶
Python¶
result = substrate.query(
'TransactionPayment', 'StorageVersion', []
)
Return value¶
('V1Ancient', 'V2')
Constants¶
OperationalFeeMultiplier¶
A fee mulitplier for Operational extrinsics to compute "virtual tip" to boost their
priority
This value is multipled by the final_fee to obtain a "virtual tip" that is later
added to a tip component in regular priority calculations.
It means that a Normal transaction can front-run a similarly-sized Operational
extrinsic (with no tip), by including a tip value greater than the virtual tip.
``rust,ignore
// ForNormal`
let priority = priority_calc(tip);
// For Operational
let virtual_tip = (inclusion_fee + tip) * OperationalFeeMultiplier;
let priority = priority_calc(tip + virtual_tip);
```
Note that since we use final_fee the multiplier applies also to the regular tip
sent with the transaction. So, not only does the transaction get a priority bump based
on the inclusion_fee, but we also amplify the impact of tips applied to Operational
transactions.
Value¶
5
Python¶
constant = substrate.get_constant('TransactionPayment', 'OperationalFeeMultiplier')
Treasury¶
Calls¶
approve_proposal¶
Approve a proposal. At a later time, the proposal will be allocated to the beneficiary and the original deposit will be returned.
May only be called from T::ApproveOrigin.
# <weight>
- Complexity: O(1).
- DbReads: Proposals, Approvals
- DbWrite: Approvals
# </weight>
Attributes¶
| Name | Type |
|---|---|
| proposal_id | ProposalIndex |
Python¶
call = substrate.compose_call(
'Treasury', 'approve_proposal', {'proposal_id': 'u32'}
)
propose_spend¶
Put forward a suggestion for spending. A deposit proportional to the value is reserved and slashed if the proposal is rejected. It is returned once the proposal is awarded.
# <weight>
- Complexity: O(1)
- DbReads: ProposalCount, origin account
- DbWrites: ProposalCount, Proposals, origin account
# </weight>
Attributes¶
| Name | Type |
|---|---|
| value | BalanceOf<T, I> |
| beneficiary | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Treasury', 'propose_spend', {
'beneficiary': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'value': 'u128',
}
)
reject_proposal¶
Reject a proposed spend. The original deposit will be slashed.
May only be called from T::RejectOrigin.
# <weight>
- Complexity: O(1)
- DbReads: Proposals, rejected proposer account
- DbWrites: Proposals, rejected proposer account
# </weight>
Attributes¶
| Name | Type |
|---|---|
| proposal_id | ProposalIndex |
Python¶
call = substrate.compose_call(
'Treasury', 'reject_proposal', {'proposal_id': 'u32'}
)
remove_approval¶
Force a previously approved proposal to be removed from the approval queue. The original deposit will no longer be returned.
May only be called from T::RejectOrigin.
- proposal_id: The index of a proposal
# <weight>
- Complexity: O(A) where A is the number of approvals
- Db reads and writes: Approvals
# </weight>
Errors:
- ProposalNotApproved: The proposal_id supplied was not found in the approval queue,
i.e., the proposal has not been approved. This could also mean the proposal does not
exist altogether, thus there is no way it would have been approved in the first place.
Attributes¶
| Name | Type |
|---|---|
| proposal_id | ProposalIndex |
Python¶
call = substrate.compose_call(
'Treasury', 'remove_approval', {'proposal_id': 'u32'}
)
spend¶
Propose and approve a spend of treasury funds.
origin: Must beSpendOriginwith theSuccessvalue being at leastamount.amount: The amount to be transferred from the treasury to thebeneficiary.beneficiary: The destination account for the transfer.
NOTE: For record-keeping purposes, the proposer is deemed to be equivalent to the beneficiary.
Attributes¶
| Name | Type |
|---|---|
| amount | BalanceOf<T, I> |
| beneficiary | AccountIdLookupOf<T> |
Python¶
call = substrate.compose_call(
'Treasury', 'spend', {
'amount': 'u128',
'beneficiary': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
Events¶
Awarded¶
Some funds have been allocated.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_index | ProposalIndex |
u32 |
| award | BalanceOf<T, I> |
u128 |
| account | T::AccountId |
AccountId |
Burnt¶
Some of our funds have been burnt.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| burnt_funds | BalanceOf<T, I> |
u128 |
Deposit¶
Some funds have been deposited.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| value | BalanceOf<T, I> |
u128 |
Proposed¶
New proposal.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_index | ProposalIndex |
u32 |
Rejected¶
A proposal was rejected; funds were slashed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_index | ProposalIndex |
u32 |
| slashed | BalanceOf<T, I> |
u128 |
Rollover¶
Spending has finished; this is the amount that rolls over until next spend.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| rollover_balance | BalanceOf<T, I> |
u128 |
SpendApproved¶
A new spend proposal has been approved.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| proposal_index | ProposalIndex |
u32 |
| amount | BalanceOf<T, I> |
u128 |
| beneficiary | T::AccountId |
AccountId |
Spending¶
We have ended a spend period and will now allocate funds.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| budget_remaining | BalanceOf<T, I> |
u128 |
Storage functions¶
Approvals¶
Proposal indices that have been approved but not yet awarded.
Python¶
result = substrate.query(
'Treasury', 'Approvals', []
)
Return value¶
['u32']
ProposalCount¶
Number of proposals that have been made.
Python¶
result = substrate.query(
'Treasury', 'ProposalCount', []
)
Return value¶
'u32'
Proposals¶
Proposals that have been made.
Python¶
result = substrate.query(
'Treasury', 'Proposals', ['u32']
)
Return value¶
{
'beneficiary': 'AccountId',
'bond': 'u128',
'proposer': 'AccountId',
'value': 'u128',
}
Constants¶
Burn¶
Percentage of spare funds (if any) that are burnt per spend period.
Value¶
0
Python¶
constant = substrate.get_constant('Treasury', 'Burn')
MaxApprovals¶
The maximum number of approvals that can wait in the spending queue.
NOTE: This parameter is also used within the Bounties Pallet extension if enabled.
Value¶
100
Python¶
constant = substrate.get_constant('Treasury', 'MaxApprovals')
PalletId¶
The treasury's pallet id, used for deriving its sovereign account ID.
Value¶
'0x7061722f74727379'
Python¶
constant = substrate.get_constant('Treasury', 'PalletId')
ProposalBond¶
Fraction of a proposal's value that should be bonded in order to place the proposal. An accepted proposal gets these back. A rejected proposal does not.
Value¶
50000
Python¶
constant = substrate.get_constant('Treasury', 'ProposalBond')
ProposalBondMaximum¶
Maximum amount of funds that should be placed in a deposit for making a proposal.
Value¶
5000000000000
Python¶
constant = substrate.get_constant('Treasury', 'ProposalBondMaximum')
ProposalBondMinimum¶
Minimum amount of funds that should be placed in a deposit for making a proposal.
Value¶
1000000000000
Python¶
constant = substrate.get_constant('Treasury', 'ProposalBondMinimum')
SpendPeriod¶
Period between successive spends.
Value¶
43200
Python¶
constant = substrate.get_constant('Treasury', 'SpendPeriod')
Errors¶
InsufficientPermission¶
The spend origin is valid but the amount it is allowed to spend is lower than the amount to be spent.
InsufficientProposersBalance¶
Proposer's balance is too low.
InvalidIndex¶
No proposal or bounty at that index.
ProposalNotApproved¶
Proposal has not been approved.
TooManyApprovals¶
Too many approvals in the queue.
Utility¶
Calls¶
as_derivative¶
Send a call through an indexed pseudonym of the sender.
Filter from origin are passed along. The call will be dispatched with an origin which use the same filter as the origin of this call.
NOTE: If you need to ensure that any account-based filtering is not honored (i.e.
because you expect proxy to have been used prior in the call stack and you do not want
the call restrictions to apply to any sub-accounts), then use as_multi_threshold_1
in the Multisig pallet instead.
NOTE: Prior to version *12, this was called as_limited_sub.
The dispatch origin for this call must be Signed.
Attributes¶
| Name | Type |
|---|---|
| index | u16 |
| call | Box<<T as Config>::RuntimeCall> |
Python¶
call = substrate.compose_call(
'Utility', 'as_derivative', {'call': 'Call', 'index': 'u16'}
)
batch¶
Send a batch of dispatch calls.
May be called from any origin.
calls: The calls to be dispatched from the same origin. The number of call must not exceed the constant:batched_calls_limit(available in constant metadata).
If origin is root then call are dispatch without checking origin filter. (This includes
bypassing frame_system::Config::BaseCallFilter).
# <weight> - Complexity: O(C) where C is the number of calls to be batched. # </weight>
This will return Ok in all circumstances. To determine the success of the batch, an
event is deposited. If a call failed and the batch was interrupted, then the
BatchInterrupted event is deposited, along with the number of successful calls made
and the error of the failed call. If all were successful, then the BatchCompleted
event is deposited.
Attributes¶
| Name | Type |
|---|---|
| calls | Vec<<T as Config>::RuntimeCall> |
Python¶
call = substrate.compose_call(
'Utility', 'batch', {'calls': ['Call']}
)
batch_all¶
Send a batch of dispatch calls and atomically execute them. The whole transaction will rollback and fail if any of the calls failed.
May be called from any origin.
calls: The calls to be dispatched from the same origin. The number of call must not exceed the constant:batched_calls_limit(available in constant metadata).
If origin is root then call are dispatch without checking origin filter. (This includes
bypassing frame_system::Config::BaseCallFilter).
# <weight> - Complexity: O(C) where C is the number of calls to be batched. # </weight>
Attributes¶
| Name | Type |
|---|---|
| calls | Vec<<T as Config>::RuntimeCall> |
Python¶
call = substrate.compose_call(
'Utility', 'batch_all', {'calls': ['Call']}
)
dispatch_as¶
Dispatches a function call with a provided origin.
The dispatch origin for this call must be Root.
# <weight>
- O(1).
- Limited storage reads.
- One DB write (event).
- Weight of derivative call execution + T::WeightInfo::dispatch_as().
# </weight>
Attributes¶
| Name | Type |
|---|---|
| as_origin | Box<T::PalletsOrigin> |
| call | Box<<T as Config>::RuntimeCall> |
Python¶
call = substrate.compose_call(
'Utility', 'dispatch_as', {
'as_origin': {
'CumulusXcm': {
'Relay': None,
'SiblingParachain': 'u32',
},
'GeneralCouncil': {
'Member': 'AccountId',
'Members': ('u32', 'u32'),
'_Phantom': None,
},
'PolkadotXcm': {
'Response': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
},
'parents': 'u8',
},
'Xcm': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
},
'parents': 'u8',
},
},
'TechnicalCommittee': {
'Member': 'AccountId',
'Members': ('u32', 'u32'),
'_Phantom': None,
},
'Void': (),
'system': {
'None': None,
'Root': None,
'Signed': 'AccountId',
},
None: None,
},
'call': 'Call',
}
)
force_batch¶
Send a batch of dispatch calls.
Unlike batch, it allows errors and won't interrupt.
May be called from any origin.
calls: The calls to be dispatched from the same origin. The number of call must not exceed the constant:batched_calls_limit(available in constant metadata).
If origin is root then call are dispatch without checking origin filter. (This includes
bypassing frame_system::Config::BaseCallFilter).
# <weight> - Complexity: O(C) where C is the number of calls to be batched. # </weight>
Attributes¶
| Name | Type |
|---|---|
| calls | Vec<<T as Config>::RuntimeCall> |
Python¶
call = substrate.compose_call(
'Utility', 'force_batch', {'calls': ['Call']}
)
Events¶
BatchCompleted¶
Batch of dispatches completed fully with no error.
Attributes¶
No attributes
BatchCompletedWithErrors¶
Batch of dispatches completed but has errors.
Attributes¶
No attributes
BatchInterrupted¶
Batch of dispatches did not complete fully. Index of first failing dispatch given, as well as the error.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | u32 |
u32 |
| error | DispatchError |
{'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None} |
DispatchedAs¶
A call was dispatched.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None}} |
ItemCompleted¶
A single item within a Batch of dispatches has completed with no error.
Attributes¶
No attributes
ItemFailed¶
A single item within a Batch of dispatches has completed with error.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| error | DispatchError |
{'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None} |
Constants¶
batched_calls_limit¶
The limit on the number of batched calls.
Value¶
10922
Python¶
constant = substrate.get_constant('Utility', 'batched_calls_limit')
Errors¶
TooManyCalls¶
Too many calls batched.
Vesting¶
Calls¶
claim¶
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'Vesting', 'claim', {}
)
claim_for¶
Attributes¶
| Name | Type |
|---|---|
| dest | <T::Lookup as StaticLookup>::Source |
Python¶
call = substrate.compose_call(
'Vesting', 'claim_for', {
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
update_vesting_schedules¶
Attributes¶
| Name | Type |
|---|---|
| who | <T::Lookup as StaticLookup>::Source |
| vesting_schedules | Vec<VestingScheduleOf<T>> |
Python¶
call = substrate.compose_call(
'Vesting', 'update_vesting_schedules', {
'vesting_schedules': [
{
'per_period': 'u128',
'period': 'u32',
'period_count': 'u32',
'start': 'u32',
},
],
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
vested_transfer¶
Attributes¶
| Name | Type |
|---|---|
| dest | <T::Lookup as StaticLookup>::Source |
| schedule | VestingScheduleOf<T> |
Python¶
call = substrate.compose_call(
'Vesting', 'vested_transfer', {
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'schedule': {
'per_period': 'u128',
'period': 'u32',
'period_count': 'u32',
'start': 'u32',
},
}
)
Events¶
Claimed¶
Claimed vesting.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | BalanceOf<T> |
u128 |
VestingScheduleAdded¶
Added new vesting schedule.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| from | T::AccountId |
AccountId |
| to | T::AccountId |
AccountId |
| vesting_schedule | VestingScheduleOf<T> |
{'start': 'u32', 'period': 'u32', 'period_count': 'u32', 'per_period': 'u128'} |
VestingSchedulesUpdated¶
Updated vesting schedules.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
Storage functions¶
VestingSchedules¶
Vesting schedules of an account.
VestingSchedules: map AccountId => Vec<VestingSchedule>
Python¶
result = substrate.query(
'Vesting', 'VestingSchedules', ['AccountId']
)
Return value¶
[
{
'per_period': 'u128',
'period': 'u32',
'period_count': 'u32',
'start': 'u32',
},
]
Constants¶
MinVestedTransfer¶
The minimum amount transferred to call vested_transfer.
Value¶
0
Python¶
constant = substrate.get_constant('Vesting', 'MinVestedTransfer')
Errors¶
AmountLow¶
The vested transfer amount is too low
InsufficientBalanceToLock¶
Insufficient amount of balance to lock
MaxVestingSchedulesExceeded¶
Failed because the maximum vesting schedules was exceeded
TooManyVestingSchedules¶
This account have too many vesting schedules
ZeroVestingPeriod¶
Vesting period is zero
ZeroVestingPeriodCount¶
Number of vests is zero
XTokens¶
Calls¶
transfer¶
Transfer native currencies.
dest_weight_limit is the weight for XCM execution on the dest
chain, and it would be charged from the transferred assets. If set
below requirements, the execution may fail and assets wouldn't be
received.
It's a no-op if any error on local XCM execution or message sending. Note sending assets out per se doesn't guarantee they would be received. Receiving depends on if the XCM message could be delivered by the network, and if the receiving chain would handle messages correctly.
Attributes¶
| Name | Type |
|---|---|
| currency_id | T::CurrencyId |
| amount | T::Balance |
| dest | Box<VersionedMultiLocation> |
| dest_weight_limit | WeightLimit |
Python¶
call = substrate.compose_call(
'XTokens', 'transfer', {
'amount': 'u128',
'currency_id': 'u32',
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
},
'parents': 'u8',
},
},
'dest_weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
}
)
transfer_multiasset¶
Transfer MultiAsset.
dest_weight_limit is the weight for XCM execution on the dest
chain, and it would be charged from the transferred assets. If set
below requirements, the execution may fail and assets wouldn't be
received.
It's a no-op if any error on local XCM execution or message sending. Note sending assets out per se doesn't guarantee they would be received. Receiving depends on if the XCM message could be delivered by the network, and if the receiving chain would handle messages correctly.
Attributes¶
| Name | Type |
|---|---|
| asset | Box<VersionedMultiAsset> |
| dest | Box<VersionedMultiLocation> |
| dest_weight_limit | WeightLimit |
Python¶
call = substrate.compose_call(
'XTokens', 'transfer_multiasset', {
'asset': {
'V0': {
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'AllConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'ConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'None': None,
},
'V1': {
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::63',
'scale_info::63',
),
'X3': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X4': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X5': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X6': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X7': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X8': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
},
'parents': 'u8',
},
},
},
},
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
},
'parents': 'u8',
},
},
'dest_weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
}
)
transfer_multiasset_with_fee¶
Transfer MultiAsset specifying the fee and amount as separate.
dest_weight_limit is the weight for XCM execution on the dest
chain, and it would be charged from the transferred assets. If set
below requirements, the execution may fail and assets wouldn't be
received.
fee is the multiasset to be spent to pay for execution in
destination chain. Both fee and amount will be subtracted form the
callers balance For now we only accept fee and asset having the same
MultiLocation id.
If fee is not high enough to cover for the execution costs in the
destination chain, then the assets will be trapped in the
destination chain
It's a no-op if any error on local XCM execution or message sending. Note sending assets out per se doesn't guarantee they would be received. Receiving depends on if the XCM message could be delivered by the network, and if the receiving chain would handle messages correctly.
Attributes¶
| Name | Type |
|---|---|
| asset | Box<VersionedMultiAsset> |
| fee | Box<VersionedMultiAsset> |
| dest | Box<VersionedMultiLocation> |
| dest_weight_limit | WeightLimit |
Python¶
call = substrate.compose_call(
'XTokens', 'transfer_multiasset_with_fee', {
'asset': {
'V0': {
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'AllConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'ConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'None': None,
},
'V1': {
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::63',
'scale_info::63',
),
'X3': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X4': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X5': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X6': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X7': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X8': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
},
'parents': 'u8',
},
},
},
},
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
},
'parents': 'u8',
},
},
'dest_weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
'fee': {
'V0': {
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'AllConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'ConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'None': None,
},
'V1': {
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::63',
'scale_info::63',
),
'X3': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X4': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X5': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X6': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X7': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
'X8': (
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
'scale_info::63',
),
},
'parents': 'u8',
},
},
},
},
}
)
transfer_multiassets¶
Transfer several MultiAsset specifying the item to be used as fee
dest_weight_limit is the weight for XCM execution on the dest
chain, and it would be charged from the transferred assets. If set
below requirements, the execution may fail and assets wouldn't be
received.
fee_item is index of the MultiAssets that we want to use for
payment
It's a no-op if any error on local XCM execution or message sending. Note sending assets out per se doesn't guarantee they would be received. Receiving depends on if the XCM message could be delivered by the network, and if the receiving chain would handle messages correctly.
Attributes¶
| Name | Type |
|---|---|
| assets | Box<VersionedMultiAssets> |
| fee_item | u32 |
| dest | Box<VersionedMultiLocation> |
| dest_weight_limit | WeightLimit |
Python¶
call = substrate.compose_call(
'XTokens', 'transfer_multiassets', {
'assets': {
'V0': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::96',
'scale_info::96',
),
'X3': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
},
'AllConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::96',
'scale_info::96',
),
'X3': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::96',
'scale_info::96',
),
'X3': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
},
'ConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::96',
'scale_info::96',
),
'X3': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X4': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X5': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X6': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X7': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
'X8': (
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
'scale_info::96',
),
},
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'None': None,
},
],
'V1': [
{
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': 'scale_info::62',
'parents': 'u8',
},
},
},
],
},
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
},
'parents': 'u8',
},
},
'dest_weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
'fee_item': 'u32',
}
)
transfer_multicurrencies¶
Transfer several currencies specifying the item to be used as fee
dest_weight_limit is the weight for XCM execution on the dest
chain, and it would be charged from the transferred assets. If set
below requirements, the execution may fail and assets wouldn't be
received.
fee_item is index of the currencies tuple that we want to use for
payment
It's a no-op if any error on local XCM execution or message sending. Note sending assets out per se doesn't guarantee they would be received. Receiving depends on if the XCM message could be delivered by the network, and if the receiving chain would handle messages correctly.
Attributes¶
| Name | Type |
|---|---|
| currencies | Vec<(T::CurrencyId, T::Balance)> |
| fee_item | u32 |
| dest | Box<VersionedMultiLocation> |
| dest_weight_limit | WeightLimit |
Python¶
call = substrate.compose_call(
'XTokens', 'transfer_multicurrencies', {
'currencies': [('u32', 'u128')],
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
},
'parents': 'u8',
},
},
'dest_weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
'fee_item': 'u32',
}
)
transfer_with_fee¶
Transfer native currencies specifying the fee and amount as separate.
dest_weight_limit is the weight for XCM execution on the dest
chain, and it would be charged from the transferred assets. If set
below requirements, the execution may fail and assets wouldn't be
received.
fee is the amount to be spent to pay for execution in destination
chain. Both fee and amount will be subtracted form the callers
balance.
If fee is not high enough to cover for the execution costs in the
destination chain, then the assets will be trapped in the
destination chain
It's a no-op if any error on local XCM execution or message sending. Note sending assets out per se doesn't guarantee they would be received. Receiving depends on if the XCM message could be delivered by the network, and if the receiving chain would handle messages correctly.
Attributes¶
| Name | Type |
|---|---|
| currency_id | T::CurrencyId |
| amount | T::Balance |
| fee | T::Balance |
| dest | Box<VersionedMultiLocation> |
| dest_weight_limit | WeightLimit |
Python¶
call = substrate.compose_call(
'XTokens', 'transfer_with_fee', {
'amount': 'u128',
'currency_id': 'u32',
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
},
'parents': 'u8',
},
},
'dest_weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
'fee': 'u128',
}
)
Events¶
TransferredMultiAssets¶
Transferred MultiAsset with fee.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| sender | T::AccountId |
AccountId |
| assets | MultiAssets |
[{'id': {'Concrete': {'parents': 'u8', 'interior': 'scale_info::62'}, 'Abstract': 'Bytes'}, 'fun': {'Fungible': 'u128', 'NonFungible': {'Undefined': None, 'Index': 'u128', 'Array4': '[u8; 4]', 'Array8': '[u8; 8]', 'Array16': '[u8; 16]', 'Array32': '[u8; 32]', 'Blob': 'Bytes'}}}] |
| fee | MultiAsset |
{'id': {'Concrete': {'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, 'X2': ('scale_info::63', 'scale_info::63'), 'X3': ('scale_info::63', 'scale_info::63', 'scale_info::63'), 'X4': ('scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63'), 'X5': ('scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63'), 'X6': ('scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63'), 'X7': ('scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63'), 'X8': ('scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63', 'scale_info::63')}}, 'Abstract': 'Bytes'}, 'fun': {'Fungible': 'u128', 'NonFungible': {'Undefined': None, 'Index': 'u128', 'Array4': '[u8; 4]', 'Array8': '[u8; 8]', 'Array16': '[u8; 16]', 'Array32': '[u8; 32]', 'Blob': 'Bytes'}}} |
| dest | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::65', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::65', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::65', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::69', 'part': 'scale_info::70'}})}} |
Constants¶
BaseXcmWeight¶
Base XCM weight.
The actually weight for an XCM message is T::BaseXcmWeight +
T::Weigher::weight(&msg).
Value¶
150000000
Python¶
constant = substrate.get_constant('XTokens', 'BaseXcmWeight')
SelfLocation¶
Self chain location.
Value¶
{'interior': {'X1': {'Parachain': 2012}}, 'parents': 1}
Python¶
constant = substrate.get_constant('XTokens', 'SelfLocation')
Errors¶
AssetHasNoReserve¶
Asset has no reserve location.
AssetIndexNonExistent¶
The specified index does not exist in a MultiAssets struct.
BadVersion¶
The version of the Versioned value used is not able to be
interpreted.
CannotReanchor¶
Could not re-anchor the assets to declare the fees for the destination chain.
DestinationNotInvertible¶
The destination MultiLocation provided cannot be inverted.
DistinctReserveForAssetAndFee¶
We tried sending distinct asset and fee but they have different reserve chains.
FeeNotEnough¶
Fee is not enough.
InvalidAncestry¶
Could not get ancestry of asset reserve location.
InvalidAsset¶
The MultiAsset is invalid.
InvalidDest¶
Invalid transfer destination.
MinXcmFeeNotDefined¶
MinXcmFee not registered for certain reserve location
NotCrossChainTransfer¶
Not cross-chain transfer.
NotCrossChainTransferableCurrency¶
Currency is not cross-chain transferable.
NotSupportedMultiLocation¶
Not supported MultiLocation
TooManyAssetsBeingSent¶
The number of assets to be sent is over the maximum.
UnweighableMessage¶
The message's weight could not be determined.
XcmExecutionFailed¶
XCM execution failed.
ZeroAmount¶
The transfering asset amount is zero.
ZeroFee¶
The fee is zero.
XcmHelper¶
Calls¶
update_xcm_weight_fee¶
Update xcm fees amount to be used in xcm.Withdraw message
Attributes¶
| Name | Type |
|---|---|
| xcm_call | XcmCall |
| xcm_weight_fee_misc | XcmWeightFeeMisc<Weight, BalanceOf<T>> |
Python¶
call = substrate.compose_call(
'XcmHelper', 'update_xcm_weight_fee', {
'xcm_call': {
'AddMemo': None,
'AddProxy': None,
'Bond': None,
'BondExtra': None,
'Contribute': None,
'Nominate': None,
'Proxy': None,
'Rebond': None,
'RemoveProxy': None,
'TransferToSiblingchain': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
},
'parents': 'u8',
},
'Unbond': None,
'Withdraw': None,
'WithdrawUnbonded': None,
},
'xcm_weight_fee_misc': {
'fee': 'u128',
'weight': {
'proof_size': 'u64',
'ref_time': 'u64',
},
},
}
)
Events¶
XcmWeightFeeUpdated¶
Xcm fee and weight updated
Attributes¶
| Name | Type | Composition |
|---|---|---|
| None | XcmWeightFeeMisc<Weight, BalanceOf<T>> |
{'weight': {'ref_time': 'u64', 'proof_size': 'u64'}, 'fee': 'u128'} |
Storage functions¶
XcmWeightFee¶
Python¶
result = substrate.query(
'XcmHelper', 'XcmWeightFee', [
{
'AddMemo': None,
'AddProxy': None,
'Bond': None,
'BondExtra': None,
'Contribute': None,
'Nominate': None,
'Proxy': None,
'Rebond': None,
'RemoveProxy': None,
'TransferToSiblingchain': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::65',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::65',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::65',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::69',
'part': 'scale_info::70',
},
},
),
},
'parents': 'u8',
},
'Unbond': None,
'Withdraw': None,
'WithdrawUnbonded': None,
},
]
)
Return value¶
{'fee': 'u128', 'weight': {'proof_size': 'u64', 'ref_time': 'u64'}}
Constants¶
NotifyTimeout¶
Notify call timeout
Value¶
100
Python¶
constant = substrate.get_constant('XcmHelper', 'NotifyTimeout')
PalletId¶
Pallet account for collecting xcm fees
Value¶
'0x7061722f66656573'
Python¶
constant = substrate.get_constant('XcmHelper', 'PalletId')
RefundLocation¶
Account on relaychain for receiving refunded fees
Value¶
'p8E1LtBLwNMtyQtVSpPQU4scgMkcF4ohaKF1zysWTBuFq2zS9'
Python¶
constant = substrate.get_constant('XcmHelper', 'RefundLocation')
RelayCurrency¶
Relay currency
Value¶
101
Python¶
constant = substrate.get_constant('XcmHelper', 'RelayCurrency')
RelayNetwork¶
Relay network
Value¶
'Polkadot'
Python¶
constant = substrate.get_constant('XcmHelper', 'RelayNetwork')
Errors¶
ConvertAccountError¶
Can not convert account success
InsufficientXcmFees¶
Insufficient xcm fees
MultiLocationNotInvertible¶
MultiLocation value ascend more parents than known ancestors of local location.
SendFailure¶
The message and destination was recognized as being reachable but the operation could not be completed.
ZeroXcmFees¶
Xcm fees cannot be zero
ZeroXcmWeightMisc¶
XcmWeightMisc cannot have zero value
XcmpQueue¶
Calls¶
resume_xcm_execution¶
Resumes all XCM executions for the XCMP queue.
Note that this function doesn't change the status of the in/out bound channels.
origin: Must passControllerOrigin.
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'XcmpQueue', 'resume_xcm_execution', {}
)
service_overweight¶
Services a single overweight XCM.
origin: Must passExecuteOverweightOrigin.index: The index of the overweight XCM to serviceweight_limit: The amount of weight that XCM execution may take.
Errors:
- BadOverweightIndex: XCM under index is not found in the Overweight storage map.
- BadXcm: XCM under index cannot be properly decoded into a valid XCM format.
- WeightOverLimit: XCM execution may use greater weight_limit.
Events:
- OverweightServiced: On success.
Attributes¶
| Name | Type |
|---|---|
| index | OverweightIndex |
| weight_limit | XcmWeight |
Python¶
call = substrate.compose_call(
'XcmpQueue', 'service_overweight', {
'index': 'u64',
'weight_limit': 'u64',
}
)
suspend_xcm_execution¶
Suspends all XCM executions for the XCMP queue, regardless of the sender's origin.
origin: Must passControllerOrigin.
Attributes¶
No attributes
Python¶
call = substrate.compose_call(
'XcmpQueue', 'suspend_xcm_execution', {}
)
update_drop_threshold¶
Overwrites the number of pages of messages which must be in the queue after which we drop any further messages from the channel.
origin: Must passRoot.new: Desired value forQueueConfigData.drop_threshold
Attributes¶
| Name | Type |
|---|---|
| new | u32 |
Python¶
call = substrate.compose_call(
'XcmpQueue', 'update_drop_threshold', {'new': 'u32'}
)
update_resume_threshold¶
Overwrites the number of pages of messages which the queue must be reduced to before it signals that message sending may recommence after it has been suspended.
origin: Must passRoot.new: Desired value forQueueConfigData.resume_threshold
Attributes¶
| Name | Type |
|---|---|
| new | u32 |
Python¶
call = substrate.compose_call(
'XcmpQueue', 'update_resume_threshold', {'new': 'u32'}
)
update_suspend_threshold¶
Overwrites the number of pages of messages which must be in the queue for the other side to be told to suspend their sending.
origin: Must passRoot.new: Desired value forQueueConfigData.suspend_value
Attributes¶
| Name | Type |
|---|---|
| new | u32 |
Python¶
call = substrate.compose_call(
'XcmpQueue', 'update_suspend_threshold', {'new': 'u32'}
)
update_threshold_weight¶
Overwrites the amount of remaining weight under which we stop processing messages.
origin: Must passRoot.new: Desired value forQueueConfigData.threshold_weight
Attributes¶
| Name | Type |
|---|---|
| new | XcmWeight |
Python¶
call = substrate.compose_call(
'XcmpQueue', 'update_threshold_weight', {'new': 'u64'}
)
update_weight_restrict_decay¶
Overwrites the speed to which the available weight approaches the maximum weight. A lower number results in a faster progression. A value of 1 makes the entire weight available initially.
origin: Must passRoot.new: Desired value forQueueConfigData.weight_restrict_decay.
Attributes¶
| Name | Type |
|---|---|
| new | XcmWeight |
Python¶
call = substrate.compose_call(
'XcmpQueue', 'update_weight_restrict_decay', {'new': 'u64'}
)
update_xcmp_max_individual_weight¶
Overwrite the maximum amount of weight any individual message may consume. Messages above this weight go into the overweight queue and may only be serviced explicitly.
origin: Must passRoot.new: Desired value forQueueConfigData.xcmp_max_individual_weight.
Attributes¶
| Name | Type |
|---|---|
| new | XcmWeight |
Python¶
call = substrate.compose_call(
'XcmpQueue', 'update_xcmp_max_individual_weight', {'new': 'u64'}
)
Events¶
BadFormat¶
Bad XCM format used.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| message_hash | Option<T::Hash> |
(None, '[u8; 32]') |
BadVersion¶
Bad XCM version used.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| message_hash | Option<T::Hash> |
(None, '[u8; 32]') |
Fail¶
Some XCM failed.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| message_hash | Option<T::Hash> |
(None, '[u8; 32]') |
| error | XcmError |
{'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None} |
| weight | Weight |
{'ref_time': 'u64', 'proof_size': 'u64'} |
OverweightEnqueued¶
An XCM exceeded the individual message weight budget.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| sender | ParaId |
u32 |
| sent_at | RelayBlockNumber |
u32 |
| index | OverweightIndex |
u64 |
| required | Weight |
{'ref_time': 'u64', 'proof_size': 'u64'} |
OverweightServiced¶
An XCM from the overweight queue was executed with the given actual weight used.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| index | OverweightIndex |
u64 |
| used | Weight |
{'ref_time': 'u64', 'proof_size': 'u64'} |
Success¶
Some XCM was executed ok.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| message_hash | Option<T::Hash> |
(None, '[u8; 32]') |
| weight | Weight |
{'ref_time': 'u64', 'proof_size': 'u64'} |
UpwardMessageSent¶
An upward message was sent to the relay chain.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| message_hash | Option<T::Hash> |
(None, '[u8; 32]') |
XcmpMessageSent¶
An HRMP message was sent to a sibling parachain.
Attributes¶
| Name | Type | Composition |
|---|---|---|
| message_hash | Option<T::Hash> |
(None, '[u8; 32]') |
Storage functions¶
InboundXcmpMessages¶
Inbound aggregate XCMP messages. It can only be one per ParaId/block.
Python¶
result = substrate.query(
'XcmpQueue', 'InboundXcmpMessages', ['u32', 'u32']
)
Return value¶
'Bytes'
InboundXcmpStatus¶
Status of the inbound XCMP channels.
Python¶
result = substrate.query(
'XcmpQueue', 'InboundXcmpStatus', []
)
Return value¶
[
{
'message_metadata': [
(
'u32',
(
'ConcatenatedVersionedXcm',
'ConcatenatedEncodedBlob',
'Signals',
),
),
],
'sender': 'u32',
'state': ('Ok', 'Suspended'),
},
]
OutboundXcmpMessages¶
The messages outbound in a given XCMP channel.
Python¶
result = substrate.query(
'XcmpQueue', 'OutboundXcmpMessages', ['u32', 'u16']
)
Return value¶
'Bytes'
OutboundXcmpStatus¶
The non-empty XCMP channels in order of becoming non-empty, and the index of the first
and last outbound message. If the two indices are equal, then it indicates an empty
queue and there must be a non-Ok OutboundStatus. We assume queues grow no greater
than 65535 items. Queue indices for normal messages begin at one; zero is reserved in
case of the need to send a high-priority signal message this block.
The bool is true if there is a signal message waiting to be sent.
Python¶
result = substrate.query(
'XcmpQueue', 'OutboundXcmpStatus', []
)
Return value¶
[
{
'first_index': 'u16',
'last_index': 'u16',
'recipient': 'u32',
'signals_exist': 'bool',
'state': ('Ok', 'Suspended'),
},
]
Overweight¶
The messages that exceeded max individual message weight budget.
These message stay in this storage map until they are manually dispatched via
service_overweight.
Python¶
result = substrate.query(
'XcmpQueue', 'Overweight', ['u64']
)
Return value¶
('u32', 'u32', 'Bytes')
OverweightCount¶
The number of overweight messages ever recorded in Overweight. Also doubles as the next
available free overweight index.
Python¶
result = substrate.query(
'XcmpQueue', 'OverweightCount', []
)
Return value¶
'u64'
QueueConfig¶
The configuration which controls the dynamics of the outbound queue.
Python¶
result = substrate.query(
'XcmpQueue', 'QueueConfig', []
)
Return value¶
{
'drop_threshold': 'u32',
'resume_threshold': 'u32',
'suspend_threshold': 'u32',
'threshold_weight': {'proof_size': 'u64', 'ref_time': 'u64'},
'weight_restrict_decay': {'proof_size': 'u64', 'ref_time': 'u64'},
'xcmp_max_individual_weight': {'proof_size': 'u64', 'ref_time': 'u64'},
}
QueueSuspended¶
Whether or not the XCMP queue is suspended from executing incoming XCMs or not.
Python¶
result = substrate.query(
'XcmpQueue', 'QueueSuspended', []
)
Return value¶
'bool'
SignalMessages¶
Any signal messages waiting to be sent.
Python¶
result = substrate.query(
'XcmpQueue', 'SignalMessages', ['u32']
)
Return value¶
'Bytes'
Errors¶
BadOverweightIndex¶
Bad overweight index.
BadXcm¶
Bad XCM data.
BadXcmOrigin¶
Bad XCM origin.
FailedToSend¶
Failed to send XCM message.
WeightOverLimit¶
Provided weight is possibly not enough to execute the message.